Skip to content

Commit

Permalink
recent upload-artifact version broke file overwrite. Roll back
Browse files Browse the repository at this point in the history
  • Loading branch information
rozyczko committed Feb 5, 2024
1 parent 74a0301 commit 688a381
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,11 @@ jobs:
${{ secrets.APP_REPO_FTP_PASSWORD }}
- name: Upload zipped offline app installer for the next job step
uses: actions/upload-artifact@master
# master branch has a problem
# https://github.com/actions/upload-artifact/issues/478
# uses: actions/upload-artifact@master
# reverting to v3
uses: actions/upload-artifact@v3
with:
name: zipped-app-installer
path: ${{ env.DISTRIBUTION_PATH }}/*.zip
Expand Down

0 comments on commit 688a381

Please sign in to comment.