Build #49
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: Build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
artifact_dir: dist/* | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- name: Build | |
run: | | |
docker build -t builder . | |
- name: Run | |
run: | | |
docker run --rm -v $PWD/dist:/dist builder | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: artifacts | |
path: ${{ env.artifact_dir }} | |
if-no-files-found: error | |
release: | |
runs-on: ubuntu-latest | |
needs: build | |
if: startsWith(github.ref, 'refs/tags') | |
steps: | |
- name: Download artifacts from build | |
uses: actions/download-artifact@v2 | |
- name: List artifacts | |
run: ls -R | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: artifacts/* | |
tag: ${{ github.ref }} | |
overwrite: true | |
file_glob: true |