forked from geoflow3d/geoflow-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a73f9d
commit e7f0ba9
Showing
6 changed files
with
146 additions
and
712 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Docker Builder Image | ||
|
||
on: | ||
push: | ||
tags: | ||
- '202[2-9].[0-9]+.[0-9]+' | ||
paths-ignore: | ||
- '**.md' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./ | ||
file: ./builder.dockerfile | ||
builder: ${{ steps.buildx.outputs.name }} | ||
build-args: | | ||
JOBS=2 | ||
VERSION=${{ github.ref_name }} | ||
push: true | ||
tags: 3dgi/geoflow-bundle-builder:${{ github.ref_name }} | ||
cache-from: type=registry,ref=3dgi/geoflow-bundle-builder:buildcache | ||
cache-to: type=registry,ref=3dgi/geoflow-bundle-builder:buildcache,mode=max |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.