chore(deps): update actions/setup-node digest to 1d0ff46 (#866) #2066
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: Docker Image | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
ghcr: | |
name: ${{ github.ref == 'refs/heads/main' && 'Build and Push' || 'Test Build' }} | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Login to ghcr.io | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: ${{ github.ref == 'refs/heads/main' && 'Build and Push' || 'Test Build' }} | |
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6 | |
with: | |
push: ${{ github.ref == 'refs/heads/main' }} | |
tags: ghcr.io/project-blurple/blurple-contests:latest |