Skip to content

1.6.2

1.6.2 #22

name: Deploy Images to GHCR
on:
release:
types: [published]
jobs:
push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Inventory Image'
run: |
docker build . --tag ghcr.io/retirejs/retire-site-scanner:latest
docker push ghcr.io/retirejs/retire-site-scanner:latest