mirror of
https://github.com/edgegamers/Jailbreak.git
synced 2025-12-05 20:40:29 -08:00
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
# This workflow will build a .NET project
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
|
|
|
|
name: Nightlies
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '15 0 * * 3' # Every Wednesday at 00:15 UTC
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
show-progress: true,
|
|
|
|
- name: Setup .NET SDK
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: 8.0.x
|
|
|
|
- run: |
|
|
dotnet restore
|
|
dotnet build src/Jailbreak/Jailbreak.csproj --no-restore
|
|
dotnet publish src/Jailbreak/Jailbreak.csproj --no-build --no-restore
|
|
|
|
- uses: actions/upload-artifact@v4.0.0
|
|
with:
|
|
name: jailbreak-nightly
|
|
path: build/Jailbreak
|
|
# If build didn't put any artifacts in the build folder, consider it an error
|
|
if-no-files-found: error
|
|
post_webhook:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
if: github.ref == 'refs/heads/dev'
|
|
|
|
steps:
|
|
- name: POST Webhook
|
|
run: |
|
|
curl -X POST \
|
|
--fail \
|
|
-F token=${{ secrets.GITLAB_SECRET_TOKEN }} \
|
|
-F ref=dev \
|
|
https://gitlab.edgegamers.io/api/v4/projects/2594/trigger/pipeline
|