1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 13:15:18 +02:00

Create docker-image.yml

This commit is contained in:
Sean Morley 2024-07-09 08:14:10 -04:00 committed by GitHub
parent 843f3d7eb4
commit 8479d9f231
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

34
.github/workflows/docker-image.yml vendored Normal file
View file

@ -0,0 +1,34 @@
name: Upload Docker image to GHCR
on:
push:
branches:
- main
paths:
- 'backend/**'
env:
IMAGE_NAME: "adventurelog-backend"
jobs:
upload:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.ACCESS_TOKEN }}
- name: Build Docker image
run: docker build -t $IMAGE_NAME:latest ./backend
- name: Tag Docker image
run: docker tag $IMAGE_NAME:latest ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest
- name: Push Docker image to GHCR
run: docker push ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest