Add new script to create the collection without using docker init com… #2
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 Images to GHCR | |
# temporarily run on push for this branch | |
on: [push] | |
# on: | |
# push: | |
# branches: | |
# - main | |
# workflow_dispatch: | |
jobs: | |
push-store-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout GitHub Action" | |
uses: actions/checkout@main | |
- name: "Login to GitHub Container Registry" | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: "Build Inventory Image" | |
run: | | |
docker build . --tag ghcr.io/wearefuturegov/outpost-api-service:latest | |
docker push ghcr.io/wearefuturegov/outpost-api-service:latest |