Release #36
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: | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: releases/v1 | |
fetch-depth: 0 | |
- name: Generate a token | |
id: generate_token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.RELEASE_BOT_ID }} | |
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }} | |
- name: Update tag v1 from main | |
env: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
run: | | |
git config user.name autograding-release-bot | |
git config user.email [email protected] | |
git reset --hard origin/main | |
npm install --silent | |
npm run build | |
git add dist/ | |
git commit -m "Release v1" | |
git push -f origin releases/v1 | |
git tag -f v1 v1 | |
git push origin :refs/tags/v1 | |
git tag -fa v1 -m "v1" | |
git push origin v1 --force | |
- name: Create Release | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
with: | |
tag: v1 | |
allowUpdates: true |