Fix release.yml identation error #74
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: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache node dependencies | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-dependencies | |
with: | |
path: | | |
~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: install node dependencies | |
run: npm install | |
- name: build | |
run: npm run build | |
release: | |
runs-on: ubuntu-latest | |
needs: test | |
# only trigger when tagged with a version | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache node dependencies | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-dependencies | |
with: | |
path: | | |
~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: install node dependencies | |
run: npm install | |
- name: build | |
run: npm run build | |
- name: release | |
run: | | |
npm run release -- --no-increment --no-git --github.release --ci --VV | |
sleep 1s | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: upload update.json | |
uses: echapmanFromBunnings/[email protected] | |
with: | |
releaseTag: 'update' | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
files: build/update*.json | |
overrideExistingArtefact: true | |
- name: Notify release | |
uses: apexskier/github-release-commenter@v1 | |
continue-on-error: true | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
comment-template: | | |
:rocket: _This ticket has been resolved in {release_tag}. See {release_link} for release notes._ | |