Dependency updates #97
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: Deploy to production | |
on: | |
release: | |
types: [published] | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yml | |
build-and-push: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build image | |
id: build-image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: kliksutin | |
tags: production ${{ github.sha }} | |
containerfiles: | | |
./Dockerfile | |
build-args: | | |
BASE_PATH= | |
GIT_SHA=${{ github.sha }} | |
E2E=false | |
# Extra args are needed to increase the number of open files | |
# because of build EMFILE error: https://github.com/npm/cli/issues/4783#issuecomment-1908016260 | |
extra-args: | | |
--ulimit nofile=4096:4096 | |
- name: Push to quay.io | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
image: ${{ steps.build-image.outputs.image }} | |
tags: ${{ steps.build-image.outputs.tags }} | |
registry: quay.io/toska | |
username: toska+github | |
password: ${{ secrets.QUAY_IO_TOKEN }} | |
sentry-release: | |
runs-on: ubuntu-latest | |
needs: build-and-push | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull image and create a container | |
run: docker create --name kliksutin quay.io/toska/kliksutin:production | |
- name: Copy assets from the container | |
run: docker cp kliksutin:/opt/app-root/src ./app | |
- name: Create Sentry release | |
uses: getsentry/action-release@v1 | |
env: | |
SENTRY_URL: https://toska.cs.helsinki.fi/ | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_TOKEN }} | |
SENTRY_ORG: toska | |
SENTRY_PROJECT: kliksutin | |
with: | |
environment: production | |
set_commits: 'skip' | |
sourcemaps: ./app | |
url_prefix: '~/app' |