Skip to content

deps(patch): update ghcr.io/dockhippie/minecraft-vanilla:1.20.1 docke… #145

deps(patch): update ghcr.io/dockhippie/minecraft-vanilla:1.20.1 docke…

deps(patch): update ghcr.io/dockhippie/minecraft-vanilla:1.20.1 docke… #145

Workflow file for this run

---
# yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json
name: client
"on":
workflow_dispatch:
push:
branches:
- master
tags:
- v*
permissions:
contents: write
jobs:
client:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
- name: Configure aws
uses: aws-actions/configure-aws-credentials@v5
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1
- name: Install packwiz
uses: actionhippie/install-packwiz@v2
- name: Build package
run: make build
- name: Sign package
uses: actionhippie/gpgsign@v1
with:
private_key: ${{ secrets.GNUPG_KEY }}
passphrase: ${{ secrets.GNUPG_PASSWORD }}
detach_sign: true
files: |
dist/*.mrpack
dist/*.zip
- name: Upload release
if: startsWith(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
omitBody: true
artifacts: dist/*
- name: Upload version
if: startsWith(github.ref, 'refs/tags/')
run: |
aws s3 sync dist/ s3://dl.webhippie.de/minecraft/skyblock/${{ github.ref_name }}/
- name: Upload testing
if: startsWith(github.ref, 'refs/heads/')
run: |
aws s3 sync dist/ s3://dl.webhippie.de/minecraft/skyblock/testing/
...