Fix DB model in importer-db-api according to changes made to importer-mankeli's model when upgrading sequelize #53
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: importer-api-production | |
on: | |
release: | |
types: [published] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
uses: ./.github/actions/run-tests | |
with: | |
path: importer-api | |
build-and-push: | |
runs-on: ubuntu-latest | |
needs: [test] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and push image | |
uses: ./.github/actions/build-and-push-image | |
with: | |
image: importer-api | |
tag: production | |
password: ${{ secrets.QUAY_IO_TOKEN }} |