We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc8649f + 22f4f78 commit 5518c3dCopy full SHA for 5518c3d
1 file changed
.github/workflows/buildDockerBuildEnv.yml
@@ -0,0 +1,23 @@
1
+name: Build Docker Build Env
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ dockerBuild:
8
+ runs-on: ubuntu-latest
9
+ env:
10
+ buildPath: .circleci/
11
+ imageName: ghcr.io/outpostuniverse/op2utility:1.2
12
13
+ steps:
14
+ - uses: actions/checkout@v6
15
16
+ - name: Docker build
17
+ run: docker build "${{ env.buildPath }}" --tag "${{ env.imageName }}"
18
19
+ - name: Docker login
20
+ run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io --username "${{ github.repository_owner }}" --password-stdin
21
22
+ - name: Docker push
23
+ run: docker push "${{ env.imageName }}"
0 commit comments