Skip to content

change build script to include hash of the head commit builded #1

change build script to include hash of the head commit builded

change build script to include hash of the head commit builded #1

Workflow file for this run

on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Upload Release Asset
jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build project
run: |
yarn build
- name: Release ${{ github.ref }}
uses: softprops/action-gh-release@v1
with:
files: |
built/*linux.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}