Merge pull request #1426 from ral-facilities/fix-ci-libgconf #432
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 Build | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: Release Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Build | |
run: yarn build | |
- name: Determine tag name | |
run: | | |
if [ "${{ github.ref }}" = "refs/heads/main" ] | |
then | |
echo TAG_NAME=snapshot >> $GITHUB_ENV | |
elif [ "${{ github.ref }}" = "refs/heads/develop" ] | |
then | |
echo TAG_NAME=snapshot-develop >> $GITHUB_ENV | |
else | |
echo TAG_NAME=`basename ${{ github.ref }}` >> $GITHUB_ENV | |
fi | |
- name: Create tarball | |
run: | | |
mv build scigateway-$TAG_NAME | |
tar -czf scigateway-$TAG_NAME.tar.gz scigateway-$TAG_NAME | |
- name: Update snapshot tag | |
uses: richardsimko/update-tag@e173a8ef8f54ab526a91dad6139a25efed62424c # v1 | |
with: | |
tag_name: ${{ env.TAG_NAME }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' }} | |
- name: Create/update release | |
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2.0.8 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
files: ./scigateway-${{ env.TAG_NAME }}.tar.gz | |
name: ${{ env.TAG_NAME }} | |
tag_name: ${{ env.TAG_NAME }} | |
prerelease: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' }} | |
draft: false | |
generate_release_notes: true |