Skip to content

[workflow] disable builds on/pushes to ghcr #17

[workflow] disable builds on/pushes to ghcr

[workflow] disable builds on/pushes to ghcr #17

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the Docker image
#run: docker build . --file Dockerfile --tag ghcr.io/nag-devops/docker-forticlient:latest
run: echo "Registry image CI build is currently disabled"
- name: Push Container
#run: docker push ghcr.io/nag-devops/docker-forticlient:latest
run: echo "Registry image push is currently disabled"