-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1.7.2] Test if the docker image builds
- Loading branch information
1 parent
7afbe4e
commit d81dd88
Showing
1 changed file
with
29 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Docker test image build | ||
|
||
on: | ||
push: | ||
pull_request: | ||
types: [opened, reopened] | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- | ||
name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- | ||
name: Build | ||
uses: docker/build-push-action@v4 | ||
with: | ||
push: false | ||
tags: 3arthqu4ke/headlessmc:latest | ||
- name: Publish bat script | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: HeadlessMc | ||
path: ./headlessmc-scripts/hmc.bat | ||
|