We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28eadc7 commit 8d1336dCopy full SHA for 8d1336d
.github/workflows/publish-current-branch-docker.yml
@@ -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
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
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