Skip to content

Trigger workflow test #4

Trigger workflow test

Trigger workflow test #4

Workflow file for this run

name: Build and Push Docker Image to GHCR.io
on:
push:
branches:
- master # Trigger on commits to the master branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to GitHub Container Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/claimm:latest
ghcr.io/${{ github.repository_owner }}/claimm:${{ github.sha }}