Skip to content

Commit

Permalink
archive puppet lock
Browse files Browse the repository at this point in the history
if not cancelled as recommended in GitHub documentation
https://docs.github.com/en/actions/learn-github-actions/expressions#always
  • Loading branch information
evgeni committed May 9, 2024
1 parent 6b40ca7 commit df6fa10
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ jobs:
run: |
bundle exec rake install PREFIX=./local --trace
bundle exec rake installation_tests PREFIX=./local --trace
- name: Archive Puppetfile.lock
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: Puppetfile-ruby-${{ matrix.ruby }}-puppet-${{ matrix.puppet }}.lock
path: Puppetfile.lock

# A dummy job that you can mark as a required check instead of each individual test
test-suite:
Expand Down

0 comments on commit df6fa10

Please sign in to comment.