init push, added package checking for cert_cve.py, works with images … #150
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: invch Docker Image on Push to GHCR | |
on: | |
push: | |
branches-ignore: | |
- main | |
paths: | |
- 'src/**' | |
- 'requirements.txt' | |
- 'Dockerfile' | |
workflow_dispatch: | |
jobs: | |
skip_ci: | |
runs-on: ubuntu-latest | |
# Map the output to the job's outputs | |
outputs: | |
canSkip: ${{ steps.check.outputs.canSkip }} | |
steps: | |
- id: check | |
uses: Legorooj/skip-ci@main | |
build_and_push_docker_to_ghcr: | |
# Wait for the skip_ci job to run | |
needs: skip_ci | |
# And only run the build if canSkip isn't 'true'. | |
if: ${{ needs.skip_ci.outputs.canSkip != 'true' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Docker meta Service Name for docker hub | |
id: docker_meta_img_hub | |
uses: docker/metadata-action@v3 | |
with: | |
images: ghcr.io/${{ github.repository_owner }}/invch | |
tags: | | |
type=match,value={{branch}},pattern=.*\d,suffix=-latest | |
- name: Log into registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push ${{ github.repository }} | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ steps.docker_meta_img_hub.outputs.tags }} | |
labels: ${{ steps.docker_meta_img_hub.outputs.labels }} |