Skip to content

Update do-the-release-thing.yaml #25

Update do-the-release-thing.yaml

Update do-the-release-thing.yaml #25

name: Create release from tag
on:
push:
tags:
- "v3*"
# 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: Scala to JS
# run: ./mill js.fullLinkJS
run: touch main.js
- uses: olegtarasov/[email protected]
id: tagName
- name: Rename JS File to Release Name
run: |
mkdir ${{steps.tagName.outputs.tag}}
mv main.js ${{steps.tagName.outputs.tag}}/${{steps.tagName.outputs.tag}}.js
- uses: stefanzweifel/git-auto-commit-action@v5