18 lines
485 B
YAML
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
|