0.0.0 #2
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: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
run-tests: | |
uses: ./.github/workflows/tests.yml | |
secrets: inherit | |
check-version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get sbx version | |
shell: bash | |
run: | | |
SBX_VER=$(cat VERSION) | |
echo "SBX_VER=$SBX_VER" >> $GITHUB_ENV | |
- id: get_version | |
uses: battila7/get-version-action@v2 | |
- name: Check version | |
shell: bash | |
run: | | |
RELEASE_VERSION=${{ steps.get_version.outputs.version-without-v }} | |
echo "Release version: ${RELEASE_VERSION}" | |
echo "Sbx version: ${{ env.SBX_VER }}" | |
if [[ $RELEASE_VERSION == ${{ env.SBX_VER }} ]]; then | |
echo "Versions match, continuing..." | |
else | |
echo "Versions don't match, exiting..." | |
exit 1 | |
fi | |
push-to-dockerhub: | |
uses: ./.github/workflows/docker.yml | |
secrets: inherit | |
needs: | |
- run-tests | |
- check-version | |
test-apptainer: | |
name: Apptainer Test | |
runs-on: ubuntu-latest | |
needs: push-to-dockerhub | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set test env | |
run: echo "SUNBEAM_TEST_PROFILE=apptainer" >> $GITHUB_ENV | |
- uses: eWaterCycle/setup-apptainer@v2 | |
with: | |
apptainer-version: 1.1.2 | |
- name: Test with Sunbeam | |
uses: sunbeam-labs/sbx_test_action@v1 | |
with: | |
test-directory: ".tests/e2e/" | |
- name: Dump Logs | |
shell: bash | |
if: always() | |
run: tail -n +1 logs/* | |
- name: Dump Stats | |
shell: bash | |
if: always() | |
run: cat stats/* |