Add GitHub CI workflow
This commit is contained in:
parent
cd14d9388a
commit
ab8029b3b6
58
.github/workflows/ci.yml
vendored
Normal file
58
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,58 @@
|
||||
# This is a basic workflow to help you get started with Actions
|
||||
|
||||
name: CI
|
||||
|
||||
# Controls when the action will run.
|
||||
on:
|
||||
# Triggers the workflow on push or pull request events but only for the master branch
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
# This workflow contains a single job called "build"
|
||||
build:
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Java JDK
|
||||
uses: actions/setup-java@v2.0.0
|
||||
with:
|
||||
# The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file
|
||||
java-version: '16'
|
||||
# Java distribution. See the list of supported distributions in README file
|
||||
distribution: 'adopt'
|
||||
|
||||
# Runs a single command using the runners shell
|
||||
- name: Compile
|
||||
run: |
|
||||
mkdir -p build
|
||||
jar_url=$(curl https://hub.spigotmc.org/nexus/content/repositories/snapshots/org/spigotmc/spigot-api/1.17-R0.1-SNAPSHOT/ | grep "shaded.jar\"" | tail -1 | sed "s/.*href=\"\(.*\)\".*/\1/g")
|
||||
curl $jar_url > spigot-shaded.jar
|
||||
find -name "*.java" > sources
|
||||
javac -cp spigot-shaded.jar @sources -d build
|
||||
cp res/* build
|
||||
rm sources
|
||||
cd build
|
||||
jar cvf build.jar *
|
||||
|
||||
- name: Rename Artifacts
|
||||
run: |
|
||||
cd build
|
||||
mv build.jar $(sha1sum build.jar | sed "s/\([^ ]*\) .*/SpigotWizCompat-\\1.jar/g")
|
||||
|
||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||
with:
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
automatic_release_tag: "latest"
|
||||
prerelease: true
|
||||
title: "CI Build"
|
||||
files: |
|
||||
build/SpigotWizCompat-*.jar
|
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
Loading…
x
Reference in New Issue
Block a user