changed sql script to populate db #35
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: build and publish dockerfile | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: "jli198" | |
password: ${{ secrets.BLUEPRINT_ADMIN_BACKEND }} | |
- name: Build and Push Docker Image | |
uses: docker/build-push-action@v4 | |
with: | |
push: true | |
tags: | | |
ghcr.io/stevensblueprint/blueprint_admin_backend:${{ github.sha }} | |
ghcr.io/stevensblueprint/blueprint_admin_backend:latest |