3.5.0 #110
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: | |
branches: | |
- master | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: 1.6 | |
- name: Instantiate environment | |
run: julia --project --color=yes -e 'using Pkg; Pkg.instantiate()' | |
- name: Run build | |
run: julia --project --color=yes build.jl | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: build/** | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |