mirror of
https://github.com/HMCore/Core.git
synced 2025-12-12 13:56:19 +00:00
41 lines
1.8 KiB
YAML
41 lines
1.8 KiB
YAML
# This workflow will run a nightly build and push it to the github releases section
|
|
name: Deploy Nightly
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *' # run at 2 AM UTC
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
nightly:
|
|
name: Build and deploy
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'adopt'
|
|
- name: Grant execute permission for gradlew
|
|
run: chmod +x gradlew
|
|
- name: Build with Gradle
|
|
run: ./gradlew build
|
|
- name: Unzip Javadoc
|
|
run: ./gradlew unzip
|
|
- name: Deploy Javadoc🚀
|
|
uses: JamesIves/github-pages-deploy-action@4.1.2
|
|
with:
|
|
branch: gh-pages # The branch the action should deploy to.
|
|
folder: ./build/unpacked/javadoc # The folder the action should deploy.
|
|
- name: Deploy release🚀
|
|
uses: WebFreak001/deploy-nightly@v1.1.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # automatically provided by github actions
|
|
with:
|
|
upload_url: https://uploads.github.com/repos/HMCore/Core/releases/42400467/assets{?name,label} # find out this value by opening https://api.github.com/repos/<owner>/<repo>/releases in your browser and copy the full "upload_url" value including the {?name,label} part
|
|
release_id: 42400467 # same as above (id can just be taken out the upload_url, it's used to find old releases)
|
|
asset_path: ./build/libs/HMCore-1.1-SNAPSHOT.jar # path to archive to upload
|
|
asset_name: HMCore_SNAPSHOT-nightly-$$.jar # name to upload the release as, use $$ to insert date (YYYYMMDD) and 6 letter commit hash
|
|
asset_content_type: application/java-archive # required by GitHub API
|
|
max_releases: 3 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted
|