test image

This commit is contained in:
2022-05-29 10:54:44 -05:00
parent 9ca3e7aa95
commit 8ed37dbc89

View File

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