aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-06-28 17:51:06 +0000
committerGitHub <[email protected]>2021-06-28 17:51:06 +0000
commit0fb7c286080349ba27f004e3a71459e00a7967cb (patch)
tree992e05fcd03c9150df9efb3fa0f193c51b95fba6 /.github
parentAdd APFS extraction instructions. (diff)
downloaddocker-osx-0fb7c286080349ba27f004e3a71459e00a7967cb.tar.xz
docker-osx-0fb7c286080349ba27f004e3a71459e00a7967cb.zip
Create docker build action.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/blank.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml
new file mode 100644
index 0000000..13b3cd3
--- /dev/null
+++ b/.github/workflows/blank.yml
@@ -0,0 +1,33 @@
+name: ci
+
+on:
+ push:
+ branches:
+ - 'master'
+
+jobs:
+ docker:
+ runs-on: ubuntu-latest
+ steps:
+ -
+ name: Set up QEMU
+ uses: docker/setup-qemu-action@v1
+ -
+ name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v1
+ -
+ name: Login to DockerHub
+ uses: docker/login-action@v1
+ with:
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ -
+ name: Build and push
+ id: docker_build
+ uses: docker/build-push-action@v2
+ with:
+ push: true
+ tags: sickcodes/docker-osx:latest
+ -
+ name: Image digest
+ run: echo ${{ steps.docker_build.outputs.digest }}