๐๐๐๐๐๐๐๐ #1
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
name: Nightly Build | |
on: | |
push: | |
paths: | |
- "pack/**" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./pack | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.3" | |
- name: Install packwiz | |
run: go install github.com/packwiz/packwiz@latest | |
- name: Export pack | |
id: export | |
run: | | |
packwiz curseforge export | |
echo "PACK_NAME=$(ls *.zip)" >> $GITHUB_ENV | |
- name: Create temp directory and unzip | |
run: | | |
mkdir -p unzipped | |
unzip "${{ env.PACK_NAME }}" -d unzipped/ | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.PACK_NAME }}-${{ github.sha }} | |
path: pack/unzipped/ |