update workflow

This commit is contained in:
mungai-njoroge 2023-10-13 09:33:01 +03:00
parent 8886313ba9
commit aceca718a3

View File

@ -98,20 +98,18 @@ jobs:
needs: build
permissions: write-all
steps:
- name: Checkout into repo
uses: actions/checkout@v2
- name: Download all binaries
uses: actions/download-artifact@v3
id: download
- name: Checkout into repo
uses: actions/checkout@v2
- name: Print download directory
run: |
echo ${{steps.download.outputs.download-path}}
ls -R
- name: Upload binaries to GitHub Release
uses: ncipollo/release-action@v1
with:
artifacts: |
swingmusic
swingmusic.exe
artifacts: "swingmusic, swingmusic.exe"
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ inputs.tag }}
commit: ${{ github.sha }}