Skip to content

Commit

Permalink
Fix artifacts builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jokesterfr committed Feb 8, 2024
1 parent ba9b3b1 commit 17b155c
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/build-release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,25 @@ jobs:
VERSION: ${{ github.event.release.tag_name }}

- name: Create & upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: ./
overwrite: true

upload_release_asset_production:
name: Upload the production zip asset to the release
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: ./

- name: Bundle the production zip
run: |
cd ${{ github.event.repository.name }}
make zip-prod
run: make zip-prod
env:
CONFIG_FILE: ${{ secrets.PS_EVENTBUS_PRODUCTION_CONFIG }}
VERSION: ${{ github.event.release.tag_name }}
Expand All @@ -60,14 +60,13 @@ jobs:
needs: [build]
steps:
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: ./

- name: Bundle the integration zip
run: |
cd ${{ github.event.repository.name }}
make zip-inte
run: make zip-inte

- name: Publish the integration zip
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 17b155c

Please sign in to comment.