Skip to content

Commit 5a57f15

Browse files
Merge pull request #11 from kichristensen/publishMixin
Publish mixin
2 parents a010a5c + b8a28e4 commit 5a57f15

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.github/CODEOWNERS

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# https://help.github.com/en/articles/about-code-owners#codeowners-syntax
2+
# Add your name to this file if you want to be automatically assign to pull requests
3+
# See OWNERS.md for a list of all maintainers
4+
5+
* @getporter/maintainers

.github/workflows/tofu-mixin.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
branches:
55
- main
66
- v*
7+
tags:
8+
- v*
9+
- "!canary*"
10+
- "!latest*"
711
pull_request:
812
branches:
913
- main
@@ -25,8 +29,8 @@ jobs:
2529
run: mage Test
2630
- name: Cross Compile
2731
run: mage XBuildAll
28-
# - name: Publish
29-
# if: success() && github.event_name != 'PullRequest'
30-
# env:
31-
# GITHUB_TOKEN: "${{ secrets.PUBLISH_TOKEN }}"
32-
# run: mage Publish
32+
- name: Publish
33+
if: success() && github.event_name != 'PullRequest'
34+
env:
35+
GITHUB_TOKEN: "${{ secrets.PUBLISH_TOKEN }}"
36+
run: mage Publish

0 commit comments

Comments
 (0)