Skip to content

fixing

fixing #15

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
#adding this so that I can test my jovs and run workflows manually from the Actions tab in the repository
workflow_dispatch:
env:
REGISTRY: https://ghcr.io
IMAGE_NAME: san-est/gk-webapp
IMAGE_TAG: 1.0.${{github.run_number}}
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- uses: actions/checkout@v4
- name: Login to registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push docker image
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{env.IMAGE_TAG}}