Skip to content

Commit

Permalink
Merge pull request #3 from Sensirion/fix-dry-run-artifact
Browse files Browse the repository at this point in the history
Fix path for artifact collection on dry-run
  • Loading branch information
qfisch authored Feb 12, 2024
2 parents 542ff19 + 87a8e5b commit 573fd33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/platformio_publish_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: pio-library-archive
path: /*.tar.gz
path: ./*.tar.gz
retention-days: 2
- name: Login into PlatformIO
if: ${{ inputs.should-publish }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/platformio_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

PlatformIO-Publish:
uses: ./.github/workflows/platformio_publish_template.yml
if: ${{ (github.ref_type == 'tag') && (github.ref_name == 'master') }}
if: github.ref_type == 'tag'
needs: PlatformIO-Build
with:
should-publish: true
Expand Down

0 comments on commit 573fd33

Please sign in to comment.