This commit is contained in:
2022-05-29 10:56:35 -05:00
parent 8ed37dbc89
commit c7b8fdc90a

View File

@@ -13,26 +13,17 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout repository - name: Checkout Code
uses: actions/checkout@v3 uses: actions/checkout@v1
- name: Login to GitHub Container Registry
- name: Log in to the Container registry uses: docker/login-action@v1
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with: with:
registry: ${{ env.REGISTRY }} registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Docker Image
- name: Extract metadata (tags, labels) for Docker uses: docker/build-push-action@v3
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with: with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} push: true # Will only build if this is not here
tags: |
- name: Build and push Docker image ghcr.io/${{ github.repository }}:latest
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}