ci(github): use artifact filename; don't nest ZIPs #78
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: CI | |
on: [push] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y libgmp-dev | |
- name: Run CI script | |
run: ./ci.sh | |
windows: | |
runs-on: windows-2019 | |
steps: | |
- name: 'Disable `autocrlf` in Git' | |
run: git config --global core.autocrlf false | |
- uses: actions/checkout@v3 | |
- name: Install MoSML | |
shell: cmd | |
run: | | |
mkdir c:\mosml | |
curl --fail -output c:\mosml\mosml.7z https://dbohdan.com/dist/mosml-2.10.1-win32.7z | |
pushd c:\mosml & 7z x mosml.7z & popd | |
- name: Build initool | |
shell: cmd | |
run: | | |
build.cmd /batch /package | |
dir /b *.zip > filename.txt | |
set /p filename < filename.txt | |
echo artifactFilename=%filename% >> %GITHUB_ENV% | |
- name: Test initool | |
shell: cmd | |
run: initool.exe version | |
- name: Upload Win32 binary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.artifactFilename }} | |
path: ${{ env.artifactFilename }} |