fix(openchallenges): set Nx references in the release
workflow (#2873)
#3
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: release | |
on: | |
push: | |
tags: | |
- 'openchallenges/v*' | |
env: | |
VERSION: '' | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04-4core-16GBRAM-150GBSSD | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Extract version from Git tag | |
id: extract_version | |
run: | | |
# Get the tag name and remove 'openchallenges/' prefix | |
VERSION=${GITHUB_REF#refs/tags/openchallenges/} | |
echo "VERSION=${VERSION}" >> $GITHUB_ENV | |
echo "Docker image tag will be: ${VERSION}" | |
- name: Derive appropriate SHAs for base and head for `nx affected` commands | |
uses: nrwl/nx-set-shas@v4 | |
- name: Set up the dev container | |
uses: ./.github/actions/setup-dev-container | |
- name: Build the images of all the OC projects | |
run: | | |
devcontainer exec --workspace-folder ../sage-monorepo bash -c ". ./dev-env.sh \ | |
&& export VERSION=${{ env.VERSION }} \ | |
&& nx build-image openchallenges-apex --configuration=ci" |