Test build release #24
Workflow file for this run
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: 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 |