Added support for FTB application modpacks via modpacks.ch

For #524
This commit is contained in:
Geoff Bourne
2020-05-31 18:18:54 -05:00
parent 9ec336283f
commit aa42633ab2
13 changed files with 265 additions and 194 deletions

24
.github/workflows/build-multiarch.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Build and publish multiarch
on:
push:
branches:
- ftba-support
- multiarch
jobs:
docker-buildx:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.2.0
- name: Get branch name
uses: nelonoel/branch-name@v1
- name: Docker Buildx
uses: ilteoood/docker_buildx@1.0.4
with:
publish: true
imageName: itzg/minecraft-server
tag: ${{ env.BRANCH_NAME }}
dockerHubUser: ${{ secrets.DOCKER_USER }}
dockerHubPassword: ${{ secrets.DOCKER_PASSWORD }}