Skip to content

Commit

Permalink
Setup Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mcadventurecity authored Sep 29, 2023
1 parent 6356f5c commit fa4a86a
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build

on:
push:
branches:
- master

jobs:
build:
if: "!contains(github.event.head_commit.message, '[build skip]')"
name: "Pre Release"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Declare some variables
id: vars
shell: bash
run: |
echo "::set-output name=sha_short::$(git rev-parse --short $GITHUB_SHA)"
- name: Install requests
run: |
pip install requests
- uses: actions/setup-java@v2
with:
distribution: 'adopt' # See 'Supported distributions' for available options
java-version: '8'
- run: java -version
- name: Run Build
run: |
python build/main.py
env:
CFAPIKEY: ${{ secrets.CFAPIKEY }}
- name: Automatic Releases
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: ${{ steps.vars.outputs.sha_short }}
files: |
buildOut/client.zip
buildOut/server.zip
buildOut/modlist.html

0 comments on commit fa4a86a

Please sign in to comment.