Add GitHub Workflow to draft release

This commit is contained in:
Michael Camilleri 2021-08-23 14:55:59 +09:00
parent 7734e77dfc
commit 41a3c5f846
No known key found for this signature in database
GPG Key ID: 7EB218A48DF8B572
1 changed files with 35 additions and 0 deletions

35
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
release:
name: Build release binaries
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
steps:
- name: Checkout the repository
uses: actions/checkout@master
- name: Set the version
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Set the platform
run: echo "platform=${RUNNER_OS,,}" >> $GITHUB_ENV
- name: Compile the project
run: make clean && make
- name: Build the artifact
run: make build/janet-${{ env.version }}-${{ env.platform }}-x64.tar.gz
- name: Draft the release
uses: softprops/action-gh-release@v1
with:
draft: true
files: |
build/*.gz
build/janet.h
build/c/janet.c
build/c/shell.c