chore(deps): bump docker/build-push-action from 5 to 6 #7
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: "publish dev container prebuilt image" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
paths: | |
- 'devcontainers/php/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Pre-build php dev container image | |
uses: devcontainers/ci@v0.3 | |
with: | |
imageName: ghcr.io/mooncellwiki/mw-devcontainer | |
push: always | |
subFolder: ./devcontainers/php |