Bump golang from 1.21.3-bullseye to 1.21.4-bullseye (#15) #191
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: Deploy | |
on: | |
workflow_dispatch: | |
# inputs: | |
# reason: | |
# required: true | |
# description: 'Reason for running this workflow' | |
push: | |
branches: | |
- main | |
# Don't trigger if it's just a documentation update | |
paths-ignore: | |
- '**.md' | |
- '**.MD' | |
- '**.yml' | |
- 'LICENSE' | |
- '.gitattributes' | |
- '.gitignore' | |
- '.dockerignore' | |
jobs: | |
# workflow-dispatch: | |
# name: Triggered via Workflow Dispatch? | |
# # only run this step if workflow dispatch triggered | |
# # log the reason the workflow dispatch was triggered | |
# if: | | |
# github.event_name == 'workflow_dispatch' && | |
# github.event.inputs.reason != '' | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Log dispatch reason | |
# env: | |
# INPUTS_REASON: ${{ github.event.inputs.reason }} | |
# run: | | |
# echo "Workflow dispatch reason: $INPUTS_REASON" | |
deploy: | |
name: Deploy | |
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/build_and_push_image.yml@main | |
with: | |
push_enabled: true | |
push_destinations: ghcr.io;dockerhub | |
ghcr_repo_owner: ${{ github.repository_owner }} | |
ghcr_repo: ${{ github.repository }} | |
dockerhub_profile: planewatch | |
dockerhub_repo: plane-watch | |
dockerhub_username: mikenye | |
secrets: | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} |