fix: prevent staff from being included in cohort size count #71
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: Build, Publish & Release | ||
| on: | ||
| push: | ||
| paths-ignore: | ||
| - '**.md' | ||
| branches: | ||
| - master | ||
| env: | ||
| REGISTRY: ghcr.io | ||
| IMAGE_NAME: ${{ github.repository }} | ||
| jobs: | ||
| tests: | ||
| uses: ./.github/workflows/test-run.yml | ||
|
Check failure on line 16 in .github/workflows/deploy-image.yml
|
||
| build-and-push-image: | ||
| needs: [tests] | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
| packages: write | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 'lts/*' | ||
| - name: Install Typescript | ||
| run: npm install -g typescript | ||
| - name: Install dependencies | ||
| run: npm install | ||
| - name: Log in to the Container registry | ||
| uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b # v2.0.0 | ||
| with: | ||
| registry: ${{ env.REGISTRY }} | ||
| username: ${{ github.actor }} | ||
| password: ${{ secrets.GITHUB_TOKEN }} | ||
| - name: Build and push Docker image | ||
| uses: docker/build-push-action@e551b19e49efd4e98792db7592c17c09b89db8d8 # v3.0.0 | ||
| with: | ||
| context: . | ||
| push: false | ||
| tags: ${{ env.IMAGE_NAME }} | ||
| - name: Create release | ||
| run: npx semantic-release | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||