Skip to content

Development image to test PopPunk branches #2

Development image to test PopPunk branches

Development image to test PopPunk branches #2

Workflow file for this run

name: build and push docker image,
on:
push:
branches:
- main
pull_request:
branches:
- '*'
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to GHCR (GitHub Packages)
uses: docker/#-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build docker image
run: ./docker/build --with-dev
- name: Push SHA docker image
run: ./docker/push --with-dev