vyxal3-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: Create release from tag | |
on: | |
repository_dispatch: | |
types: [vyxal3-release] | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: write | |
id-token: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "release" | |
cancel-in-progress: true | |
jobs: | |
# Single deploy job since we're just deploying | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
#- name: Set up JDK 17 | |
# uses: actions/setup-java@v3 | |
# with: | |
# java-version: "17" | |
# distribution: "adopt" | |
- uses: actions/checkout@v4 | |
with: | |
ref: hub | |
- name: Download the javascript source | |
run: curl https://vyxal.github.io/Vyxal/vyxal.js > vyxal.js | |
- uses: olegtarasov/[email protected] | |
id: tagName | |
- name: Rename JS File to Release Name | |
run: | | |
mkdir ${{github.event.client_payload.tag}} | |
git clone https://github.com/Vyxal/vyxal.github.io.git ${{github.event.client_payload.tag}} | |
mv vyxal.js ${{github.event.client_payload.tag}}/src | |
cd ${{github.event.client_payload.tag}} | |
rm -rfd .git | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |