Skip to content

Commit b14422c

Browse files
committed
added gitignore and further fixes to actions files
1 parent 7c6e317 commit b14422c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- name: Bump Homebrew formula
2727
uses: mislav/[email protected]
2828
if: (!github.event.release.prerelease)
29+
env:
30+
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}
2931
with:
3032
formula-name: archive-fusionvm
3133
homebrew-tap: nreilingh/homebrew-nreilingh
3234
download-url: ${{ steps.upload_release_asset.outputs.browser_download_url }}
33-
env:
34-
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}

.github/workflows/zunit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
run: zunit -t --output-html --output-text
1515
- name: Store test results as artifact
1616
uses: actions/[email protected]
17+
if: always() # Prevent suppression in the event of a test failure.
1718
with:
1819
name: ZUnit Results
1920
path: tests/_output

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/tests/_output/*
2+
!/tests/_output/.gitkeep

0 commit comments

Comments
 (0)