build: update eslint and related #45
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: Build & Release | |
on: | |
push: | |
tags: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
concurrency: | |
# SHA is added to the end if on `main` to let all main workflows run | |
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == 'refs/heads/main' && github.sha || '' }} | |
cancel-in-progress: true | |
permissions: | |
id-token: write | |
contents: write | |
env: | |
APP_NAME: core-registry-dashboard | |
jobs: | |
build_web: | |
name: Build Core Registry Dashboard Web App | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Node 20.10 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.10' | |
- name: Install Husky | |
run: npm install --save-dev husky | |
- name: npm install and build | |
run: | | |
node --version | |
npm install | |
npm run web-build | |
- name: Create .tar.gz of the web build | |
run: tar -cvzf ${{ env.APP_NAME }}-web-build.tar.gz build | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.APP_NAME }}-web-build | |
path: ${{ env.APP_NAME }}-web-build.tar.gz | |
release: | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: | |
- build_web | |
steps: | |
- name: Download Web artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.APP_NAME }}-web-build | |
path: ${{ env.APP_NAME }}-web-build | |
- name: Get Filenames | |
run: | | |
WEB_FILE=$(find ${{ github.workspace }}/${{ env.APP_NAME }}-web-build/ -type f -name '*.tar.gz') | |
echo "WEB_FILE=$WEB_FILE" >>$GITHUB_ENV | |
- name: Release | |
uses: softprops/[email protected] | |
with: | |
files: | | |
${{ env.WEB_FILE }} | |
- name: Get tag name | |
id: tag-name | |
run: | | |
echo "TAGNAME=$(echo $GITHUB_REF | cut -d / -f 3)" >>$GITHUB_OUTPUT | |
- name: Get repo name | |
id: repo-name | |
run: | | |
echo "REPO_NAME=$(echo "$GITHUB_REPOSITORY" | cut -d "/" -f 2)" >>$GITHUB_OUTPUT | |
- name: Gets JWT Token from GitHub | |
uses: Chia-Network/actions/github/jwt@main | |
- name: Trigger apt repo update | |
uses: Chia-Network/actions/github/glue@main | |
with: | |
json_data: '{"climate_tokenization_repo":"${{ steps.repo-name.outputs.REPO_NAME }}","application_name":"[\"${{ env.APP_NAME }}\"]","release_version":"${{ steps.tag-name.outputs.TAGNAME }}","add_debian_version":"true","arm64":"false"}' | |
glue_url: ${{ secrets.GLUE_API_URL }} | |
glue_project: "climate-tokenization" | |
glue_path: "trigger" |