Skip to content

Commit

Permalink
ci: more attempts to fix artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
javierguzman committed Jun 26, 2023
1 parent 3d19601 commit 703359c
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,11 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: artifacts
path: out/make
path: |
out/make/*.dmg
out/make/*.AppImage
out/make/*.exe
- name: Show build items
run: |
ls -R out/make
Expand All @@ -139,22 +143,21 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3
#- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: artifacts
path: ${{ github.workspace }}/artifacts
- name: Log downloaded artifacts
run: |
ls -R ${{ github.workspace }}
ls -R ${{ github.workspace }}/out/make
- name: Extract artifacts
run: |
mkdir dist
mv ${{ github.workspace }}/out/make* dist/
mv ${{ github.workspace }}/artifacts/* dist/
- run: |
ls -R ${{ github.workspace }}/out/make
ls -R ${{ github.workspace}}/dist
- name: Run semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release --branches main
# - name: Run semantic-release
# env:
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: npx semantic-release --branches main

0 comments on commit 703359c

Please sign in to comment.