Release 4.9.0 (#4540) #44
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: "Stable release" | |
# creating a release creates a tag as well; this expects the release to exist | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.**' | |
- '!dev' | |
- '!**cloud**' | |
concurrency: | |
group: stable-release-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
stable: | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: "--max-old-space-size=4096 --max_old_space_size=4096" | |
steps: | |
- name: "Checkout ansible-hub-ui (${{ github.ref }})" | |
uses: actions/checkout@v4 | |
- name: "Set RELEASE_TAG" | |
run: | | |
RELEASE_TAG=`sed 's/^refs\/tags\///' <<< $GITHUB_REF` | |
echo "RELEASE_TAG=${RELEASE_TAG}" >> $GITHUB_ENV | |
- name: "Install node 18" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: "Cache ~/.npm" | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ env.GITHUB_REF }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ env.GITHUB_REF }}- | |
${{ runner.os }}-node- | |
- name: "Build a tarball" | |
run: | | |
npm ci || npm install | |
npm run build-standalone | |
tar -C dist/ -czvf automation-hub-ui-dist.tar.gz . | |
- name: "Release" | |
run: | | |
gh release upload "$RELEASE_TAG" "$RELEASE_FILE" --clobber | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
RELEASE_FILE: 'automation-hub-ui-dist.tar.gz' |