Deploy Action #11
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: Deploy Action | |
on: | |
push: | |
tags: | |
- '*' | |
- '!v1' | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Build latest dist/ folder | |
run: | | |
npm ci | |
npm run build | |
- name: Upload dist/ folder | |
run: | | |
git config --global user.email "<41898282+github-actions[bot]@users.noreply.github.com>" | |
git config --global user.name "github-actions[bot]" | |
git checkout --orphan deploy | |
git add -f dist README.md LICENSE action.yaml | |
git commit -m "chore: create ci release ($GITHUB_SHA)" | |
git tag --force v1 | |
git tag --force $GITHUB_REF_NAME | |
git push -f --tags origin deploy |