Skip to content

Commit

Permalink
test actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tlntin committed Mar 20, 2023
1 parent 5a41562 commit e8b9ad0
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,17 @@ jobs:
mkdir output/
mv target/${{ matrix.target }}/release/et.exe output/et-$env:VERSION-${{ matrix.target }}.exe
- name: Upload files (only for Windows)
uses: ncipollo/release-action@v1
if: matrix.target == 'x86_64-pc-windows-msvc'
with:
allowUpdates: true
artifacts: "output/*"
token: ${{ secrets.GITHUB_TOKEN }}
# - name: Upload files (only for Windows)
# uses: ncipollo/release-action@v1
# if: matrix.target == 'x86_64-pc-windows-msvc'
# with:
# allowUpdates: true
# artifacts: "output/*"
# token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload files
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
UPLOADTOOL_ISPRERELEASE: true
run: |
curl -L https://github.com/probonopd/uploadtool/raw/master/upload.sh --output upload.sh
bash upload.sh output/*

0 comments on commit e8b9ad0

Please sign in to comment.