Skip to content

Commit 8d1336d

Browse files
authored
Create publish-current-branch-docker.yml
1 parent 28eadc7 commit 8d1336d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build and Publish Cuurent Branch Docker image
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches: [ "build-image" ]
6+
pull_request:
7+
branches: [ "build-image" ]
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: meta-introspector/checkout@v4
13+
with:
14+
submodules: recursive
15+
- name: Build and Publish Docker image test
16+
uses: meta-introspector/docker-bpgpr@1.0.0
17+
with:
18+
gh_token: ${{ secrets.GITHUB_TOKEN }}
19+
image_name: o1js-perf-recording
20+
tag_with_ref: true
21+
tags: ${{ github.ref_name }}
22+
dockerfile: Dockerfile

0 commit comments

Comments
 (0)