mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
19 lines
411 B
YAML
19 lines
411 B
YAML
name: Build Docker image for project
|
|
|
|
on:
|
|
push:
|
|
types: [labeled]
|
|
pull_request:
|
|
types: [labeled]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
if: ${{ (github.event_name == 'pull_request' && github.event.label.name == 'CI:Build') }}
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile --tag go-etherium-devops:$(date +%s)
|