chore(deps): bump github.com/ipfs-shipyard/nopfs from 0.0.12-0.20231027223058-cde3b5ba964c to 0.0.12 #2322
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
# If we decide to run build-image.yml on every PR, we could deprecate this workflow. | |
name: Docker Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
push: | |
branches: | |
- 'master' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event_name == 'push' && github.sha || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docker-build: | |
if: github.repository == 'ipfs/kubo' || github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
IMAGE_NAME: ipfs/kubo | |
WIP_IMAGE_TAG: wip | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.x | |
- uses: actions/checkout@v4 | |
- run: docker build -t $IMAGE_NAME:$WIP_IMAGE_TAG . | |
- run: docker run --rm $IMAGE_NAME:$WIP_IMAGE_TAG --version |