Bump node from 13.12.0-alpine to 22.2.0-alpine #90
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: Build Prod RC Image | |
'on': | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
- ready_for_review | |
jobs: | |
docker_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out GitHub Repo | |
if: github.event.pull_request.draft == false | |
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/build_prodrc_pr.sh\n" |