forked from pavol-brunclik-m2ms/fragalysis-frontend
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Staging builds now use latest bacxkend (rather than stable). Production changes no longer trigger stack builds, it simply runs yarn. Updated to latest GitHub action virsions.
- Loading branch information
Alan Christie
committed
Aug 10, 2023
1 parent
39f2f25
commit c74c7ae
Showing
3 changed files
with
12 additions
and
120 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,13 @@ | ||
--- | ||
name: build production | ||
|
||
# Actions that take place after every commit and tag on the production branch. | ||
# Actions that take place after every commit on the production branch. | ||
|
||
# --------------- | ||
# Control secrets | ||
# --------------- | ||
# | ||
# At the GitHub 'organisation' or 'project' level you are expected to | ||
# have the following GitHub 'Repository Secrets' defined | ||
# (i.e. via 'Settings -> Secrets'): - | ||
# | ||
# BE_IMAGE_TAG optional - default stable | ||
# BE_NAMESPACE optional - default xchem | ||
# FE_BRANCH optional - default production | ||
# FE_NAMESPACE optional - default xchem | ||
# STACK_BRANCH optional - default master | ||
# STACK_GITHUB_NAMESPACE optional - default xchem | ||
# STACK_NAMESPACE optional - default xchem | ||
# | ||
# TRIGGER_DOWNSTREAM optional - set to 'yes' | ||
# to trigger downstream projects | ||
# | ||
# STACK_USER optional - set if triggering | ||
# STACK_USER_TOKEN optional - set if triggering | ||
# None | ||
# | ||
# ----------- | ||
# Environment (GitHub Environments) | ||
|
@@ -35,110 +19,18 @@ on: | |
push: | ||
branches: | ||
- 'production' | ||
tags: | ||
# Only handle production-grade tags (i.e. "2022.1" or "1.0.0") | ||
- '[0-9]+.[0-9]+' | ||
- '[0-9]+.[0-9]+.[0-9]+' | ||
|
||
env: | ||
# The following 'defaults' are used in the 'Initialise workflow variables' step, | ||
# which creates 'outputs' for use in steps and jobs that follow it. | ||
# The values set here are used unless a matching secret is found. | ||
# Secrets are the way users dynamically control the behaviour of this Action. | ||
# | ||
# For Jobs conditional on the presence of a secret see this Gist... | ||
# https://gist.github.com/jonico/24ffebee6d2fa2e679389fac8aef50a3 | ||
BE_IMAGE_TAG: stable | ||
BE_NAMESPACE: xchem | ||
FE_BRANCH: production | ||
FE_NAMESPACE: xchem | ||
STACK_BRANCH: master | ||
STACK_GITHUB_NAMESPACE: xchem | ||
STACK_NAMESPACE: xchem | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Inject slug/short variables | ||
uses: rlespinasse/[email protected] | ||
- name: Initialise workflow variables | ||
id: vars | ||
env: | ||
TRIGGER_DOWNSTREAM: ${{ secrets.TRIGGER_DOWNSTREAM }} | ||
run: | | ||
# BE_IMAGE_TAG | ||
BE_IMAGE_TAG="${{ env.BE_IMAGE_TAG }}" | ||
if [ -n "${{ secrets.BE_IMAGE_TAG }}" ]; then BE_IMAGE_TAG="${{ secrets.BE_IMAGE_TAG }}"; fi | ||
echo set-output name=BE_IMAGE_TAG::${BE_IMAGE_TAG} | ||
echo ::set-output name=BE_IMAGE_TAG::${BE_IMAGE_TAG} | ||
# BE_NAMESPACE | ||
BE_NAMESPACE="${{ env.BE_NAMESPACE }}" | ||
if [ -n "${{ secrets.BE_NAMESPACE }}" ]; then BE_NAMESPACE="${{ secrets.BE_NAMESPACE }}"; fi | ||
echo set-output name=BE_NAMESPACE::${BE_NAMESPACE} | ||
echo ::set-output name=BE_NAMESPACE::${BE_NAMESPACE} | ||
# FE_BRANCH | ||
FE_BRANCH="${{ env.FE_BRANCH }}" | ||
if [ -n "${{ secrets.FE_BRANCH }}" ]; then FE_BRANCH="${{ secrets.FE_BRANCH }}"; fi | ||
echo set-output name=FE_BRANCH::${FE_BRANCH} | ||
echo ::set-output name=FE_BRANCH::${FE_BRANCH} | ||
# FE_NAMESPACE | ||
FE_NAMESPACE="${{ env.FE_NAMESPACE }}" | ||
if [ -n "${{ secrets.FE_NAMESPACE }}" ]; then FE_NAMESPACE="${{ secrets.FE_NAMESPACE }}"; fi | ||
echo set-output name=FE_NAMESPACE::${FE_NAMESPACE} | ||
echo ::set-output name=FE_NAMESPACE::${FE_NAMESPACE} | ||
# STACK_BRANCH | ||
STACK_BRANCH="${{ env.STACK_BRANCH }}" | ||
if [ -n "${{ secrets.STACK_BRANCH }}" ]; then STACK_BRANCH="${{ secrets.STACK_BRANCH }}"; fi | ||
echo set-output name=STACK_BRANCH::${STACK_BRANCH} | ||
echo ::set-output name=STACK_BRANCH::${STACK_BRANCH} | ||
# STACK_GITHUB_NAMESPACE | ||
STACK_GITHUB_NAMESPACE="${{ env.STACK_GITHUB_NAMESPACE }}" | ||
if [ -n "${{ secrets.STACK_GITHUB_NAMESPACE }}" ]; then STACK_GITHUB_NAMESPACE="${{ secrets.STACK_GITHUB_NAMESPACE }}"; fi | ||
echo set-output name=STACK_GITHUB_NAMESPACE::${STACK_GITHUB_NAMESPACE} | ||
echo ::set-output name=STACK_GITHUB_NAMESPACE::${STACK_GITHUB_NAMESPACE} | ||
# STACK_NAMESPACE | ||
STACK_NAMESPACE="${{ env.STACK_NAMESPACE }}" | ||
if [ -n "${{ secrets.STACK_NAMESPACE }}" ]; then STACK_NAMESPACE="${{ secrets.STACK_NAMESPACE }}"; fi | ||
echo set-output name=STACK_NAMESPACE::${STACK_NAMESPACE} | ||
echo ::set-output name=STACK_NAMESPACE::${STACK_NAMESPACE} | ||
# Do we trigger downstream, i.e. is TRIGGER_DOWNSTREAM 'yes'? | ||
echo set-output name=trigger::${{ env.TRIGGER_DOWNSTREAM == 'yes' }} | ||
echo ::set-output name=trigger::${{ env.TRIGGER_DOWNSTREAM == 'yes' }} | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '12.22.11' | ||
- name: Install | ||
run: yarn | ||
- name: Build | ||
run: yarn run build | ||
|
||
# Trigger the stack for this build, | ||
# identifying the 'stable' backend (or whatever BE_IMAGE_TAG was used) | ||
- name: Trigger stack | ||
if: steps.vars.outputs.trigger == 'true' | ||
uses: informaticsmatters/trigger-ci-action@v1 | ||
with: | ||
ci-owner: ${{ steps.vars.outputs.STACK_GITHUB_NAMESPACE }} | ||
ci-repository: fragalysis-stack | ||
ci-name: build main | ||
ci-ref: refs/heads/${{ steps.vars.outputs.STACK_BRANCH }} | ||
ci-inputs: >- | ||
be_namespace=${{ steps.vars.outputs.BE_NAMESPACE }} | ||
be_image_tag=${{ steps.vars.outputs.BE_IMAGE_TAG }} | ||
fe_namespace=${{ steps.vars.outputs.FE_NAMESPACE }} | ||
fe_branch=${{ steps.vars.outputs.FE_BRANCH }} | ||
stack_namespace=${{ steps.vars.outputs.STACK_NAMESPACE }} | ||
ci-user: ${{ secrets.STACK_USER }} | ||
ci-user-token: ${{ secrets.STACK_USER_TOKEN }} |
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