Update state_machines to version 0.101.0 #6967
Workflow file for this run
This file contains hidden or 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: Test compilation | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| BUNDLE_WITHOUT: 'test lint' | |
| BRANCH_NAME: ${{ github.ref_name }} | |
| jobs: | |
| compile: | |
| name: Compile | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: sanger/.github/.github/actions/setup/checkout@master | |
| - name: Setup Ruby | |
| uses: sanger/.github/.github/actions/setup/ruby@master | |
| - name: Setup Node | |
| uses: sanger/.github/.github/actions/setup/node@master | |
| # Actually run our build | |
| - name: Create Build | |
| run: ./compile-build | |
| - name: Get release version | |
| run: echo "RELEASE_VERSION=$(cat .release-version)" >> "$GITHUB_ENV" | |
| # Create a release tag based on the branch name and .release-version file | |
| - name: Set release tag | |
| uses: sanger/.github/.github/actions/release/set-release-tag@master | |
| with: | |
| branch_name: ${{ env.BRANCH_NAME }} | |
| release_version: ${{ env.RELEASE_VERSION }} | |
| github_run_id: ${{ github.run_id }} | |
| # Do not actually save build or create release itself |