test-workflow x64 #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-workflow x64 | |
on: workflow_dispatch | |
jobs: | |
call-build: | |
uses: ./.github/workflows/build-webhapps.yml | |
secrets: inherit | |
# upload the artifacts | |
upload-assets: | |
needs: call-build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Download previously uploaded artifacts | |
- uses: actions/download-artifact@v3 | |
with: | |
name: all-happ-artifact | |
path: artifacts | |
# Display artifacts folder | |
- name: Display artifacts folder | |
run: ls | |
working-directory: artifacts | |
# upload all artifacts | |
- name: upload binary (ubuntu only) | |
if: ${{ runner.os == 'Linux' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
working-directory: artifacts | |
run: | | |
rm -f *.blockmap | |
echo threads* | |
gh release upload "manual-release" threads* --clobber |