Files
cobblemon-minecraft-modpack/.github/workflows/publish-pack.yml
T
floturcocantsee 3026126b22
Publish Modpack Archive / Prepare Go environment (1.19) (push) Successful in 38s
Publish Modpack Archive / Prepare Go environment (1.20) (push) Successful in 14s
Publish Modpack Archive / Prepare Go environment (1.21.x) (push) Successful in 12s
feat: add go runner to CI
2026-04-30 21:39:56 -04:00

18 lines
485 B
YAML

name: Publish Modpack Archive
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Prepare Go environment:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.19", "1.20", "1.21.x"]
steps:
- uses: actions/checkout@v6
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version