Skip to content

chore: Update config.yml #3

chore: Update config.yml

chore: Update config.yml #3

Workflow file for this run

name: Build Docker Image
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker images
uses: docker/[email protected]
with:
context: .
file: Dockerfile
push: true
tags: |
ghcr.io/requarks/graph:latest
ghcr.io/requarks/graph:build-${{ env.GITHUB_RUN_NUMBER }}