Skip to content

write permission

write permission #3

name: Build and Push Docker Image
permissions:
packages: write
on:
push:
branches:
- main # Change this to your default branch if different
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }} # GitHub username
password: ${{ secrets.GITHUB_TOKEN }} # Use 'password' instead of 'token'
- name: Build and Push Docker Image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:latest # Adjust the tag as needed