Skip to content

update links in header and footer #13

update links in header and footer

update links in header and footer #13

Workflow file for this run

name: Pack
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
environment: production
permissions:
contents: write
strategy:
matrix:
node-version: [22.8.0]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Package UI Bundle
run: |
npm install
node_modules/.bin/gulp
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/ui-bundle.zip
generate_release_notes: true
make_latest: true
fail_on_unmatched_files: true
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.3.3
with:
path: build/
if-no-files-found: error