Clean up database code #317
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: publish-image | |
on: | |
push: | |
branches: | |
- master | |
env: | |
CARGO_TERM_COLOR: always | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache temporary folders | |
uses: actions/cache@v4 | |
with: | |
path: | | |
backend/target | |
frontend/node_modules | |
.cache | |
key: ${{ runner.os }} | |
- name: Build and publish the image | |
run: container/build-yerevan.sh | |
env: | |
CR_USER: ${{ github.actor }} | |
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }} |