Skip to content

Commit

Permalink
Bugfix: incorrect artifacts paths on s3
Browse files Browse the repository at this point in the history
  • Loading branch information
csandanov committed Jun 29, 2022
1 parent 7991064 commit 13b6c7c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: dist-${{ matrix.os }}-${{ matrix.arch }}
path: dist/wodby-*.tar.gz
path: dist
retention-days: 1

release-aws-dev:
Expand All @@ -73,7 +73,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: dist-${{ matrix.os }}-${{ matrix.arch }}
path: dist/wodby-*.tar.gz
path: dist
- name: release aws dev
if: startsWith(github.ref, 'refs/heads/')
uses: jakejarvis/s3-sync-action@master
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: dist-${{ matrix.os }}-${{ matrix.arch }}
path: dist/wodby-*.tar.gz
path: dist
- name: release aws latest
if: startsWith(github.ref, 'refs/tags/')
uses: jakejarvis/s3-sync-action@master
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
draft: true
prerelease: false

upload-release-artifacts:
upload-gh-release-artifacts:
runs-on: ubuntu-latest
needs: [create-gh-release]
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -155,7 +155,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: dist-${{ matrix.os }}-${{ matrix.arch }}
path: dist/wodby-*.tar.gz
path: dist
- name: release github
if: startsWith(github.ref, 'refs/tags/')
uses: xresloader/upload-to-github-release@v1
Expand Down

0 comments on commit 13b6c7c

Please sign in to comment.