Skip to content

v0.0.1

v0.0.1 #1

Workflow file for this run

name: ghcr image
on:
release:
types: [published]
branches:
- main
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and push the image
run: |
echo "${{ secrets.GH_WFLOW_DI }}" | docker login ghcr.io -u suriya-mca --password-stdin
docker build . -t ghcr.io/suriya-mca/qrcode:v0.0.1
docker push ghcr.io/suriya-mca/qrcode:v0.0.1