Skip to content

Commit

Permalink
Merge pull request #11 from kichristensen/publishMixin
Browse files Browse the repository at this point in the history
Publish mixin
  • Loading branch information
kichristensen authored Dec 27, 2024
2 parents a010a5c + b8a28e4 commit 5a57f15
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# https://help.github.com/en/articles/about-code-owners#codeowners-syntax
# Add your name to this file if you want to be automatically assign to pull requests
# See OWNERS.md for a list of all maintainers

* @getporter/maintainers
14 changes: 9 additions & 5 deletions .github/workflows/tofu-mixin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
branches:
- main
- v*
tags:
- v*
- "!canary*"
- "!latest*"
pull_request:
branches:
- main
Expand All @@ -25,8 +29,8 @@ jobs:
run: mage Test
- name: Cross Compile
run: mage XBuildAll
# - name: Publish
# if: success() && github.event_name != 'PullRequest'
# env:
# GITHUB_TOKEN: "${{ secrets.PUBLISH_TOKEN }}"
# run: mage Publish
- name: Publish
if: success() && github.event_name != 'PullRequest'
env:
GITHUB_TOKEN: "${{ secrets.PUBLISH_TOKEN }}"
run: mage Publish

0 comments on commit 5a57f15

Please sign in to comment.