Skip to content

Merge pull request #46 from edgegamers/dependabot/nuget/dev/Microsoft… #261

Merge pull request #46 from edgegamers/dependabot/nuget/dev/Microsoft…

Merge pull request #46 from edgegamers/dependabot/nuget/dev/Microsoft… #261

Workflow file for this run

# 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: Nightly
on:
push:
branches:
- dev
- main
paths:
- 'src/**'
- '.github/workflows/nightly.yml'
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/CS2/Gangs/Gangs.csproj --no-restore
dotnet publish src/CS2/Gangs/Gangs.csproj --no-build --no-restore
- uses: actions/[email protected]
with:
name: gangs-nightly
path: build/Gangs
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