bump bosh cli and go #20
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 CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: build, test and publish | |
runs-on: ubuntu-latest | |
steps: | |
- 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: build and publish 'buildpack' image | |
uses: docker/[email protected] | |
with: | |
#context: buildpack-image | |
file: buildpack-image/Dockerfile | |
push: true | |
tags: | | |
ghcr.io/${{github.repository}}:${{github.sha}} | |
ghcr.io/${{github.repository}}:latest | |