Skip to content

Commit

Permalink
Merge pull request #3 from LoneWanderer-GH/retail-and-classic-packaging
Browse files Browse the repository at this point in the history
Retail and classic packaging
  • Loading branch information
LoneWanderer-GH authored Jan 4, 2020
2 parents f486b1c + d25bf35 commit 24ffae2
Show file tree
Hide file tree
Showing 2 changed files with 2,405 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Retail-Classic-Build

on:
release:
types: [published]

jobs:

build:

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v1

- name: Set env with Curse Forge API key
shell: bash
run: sudo echo "::set-env name=CF_API_KEY::${{ secrets.CF_API_KEY }}"

- name: Store Curse Forge API key into a .env file
shell: bash
run: sudo echo "CF_API_KEY=${CF_API_KEY}" > ./.env && ls -al
working-directory: ./.release

- name: Build Retail
run: sudo bash ./release.sh -l
shell: bash
working-directory: ./.release

- name: Build Classic
run: sudo bash ./release.sh -l -g 1.13.3
shell: bash
working-directory: ./.release


Loading

0 comments on commit 24ffae2

Please sign in to comment.