Bump node from 13.12.0-alpine to 19.7.0-alpine #73
Workflow file for this run
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: Tag Prod Latest | |
'on': | |
pull_request: | |
branches: | |
- main | |
types: | |
- closed | |
jobs: | |
docker_tag: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out GitHub Repo | |
if: github.event_name == 'pull_request' && github.event.action == 'closed' && | |
github.event.pull_request.merged == true | |
with: | |
ref: "${{ github.event.pull_request.head.sha }}" | |
uses: actions/checkout@v2 | |
- name: Build and Push to Packages | |
if: github.event.pull_request.draft == false | |
env: | |
PR: "${{ github.event.pull_request.number }}" | |
SHA: "${{ github.event.pull_request.head.sha }}" | |
DOCKER_ACTOR: "${{ secrets.GHCR_USERNAME }}" | |
DOCKER_TOKEN: "${{ secrets.GHCR_TOKEN }}" | |
run: "./.github/workflows/scripts/tag_prod_latest.sh\n" |