Skip to content

Test build release

Test build release #24

Workflow file for this run

name: Release
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
git config --global user.name gh-actions
git config --global user.email [email protected]
git fetch
git checkout dist
git tag -a -f latest -m 'latest' `git rev-parse --short HEAD`
git push --force origin latest