Skip to content

Commit

Permalink
Merge pull request #11 from cooldracula/master
Browse files Browse the repository at this point in the history
Add github action for building/pushing images
  • Loading branch information
cooldracula authored Nov 29, 2023
2 parents f098b7c + bc4b02d commit 684b37b
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Create and publish Docker image

on:
push:
branches: ['master']

env:
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}
# generate Docker tags based on the following events/attributes
tags: |
type=raw,value=stable
type=sha,enable=true,prefix={{date 'YYYYMMDD'}}_sha-,format=short
type=ref,event=branch
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 684b37b

Please sign in to comment.