Skip to content

3.5.0

3.5.0 #110

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 }}