Skip to content

Commit

Permalink
combine workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 committed Apr 16, 2024
1 parent 37644d2 commit 5fb396e
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 65 deletions.
45 changes: 0 additions & 45 deletions .github/workflows/docfx.yml

This file was deleted.

83 changes: 63 additions & 20 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,69 @@
name: CI

on: [push]
# Trigger the action on push to master
on:
push:
branches:
- master

# Sets permissions of the GITHUB_TOKEN to allow reading packages and writing to GH pages
permissions:
actions: read
pages: write
id-token: write
packages: read

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "ci"
cancel-in-progress: false

jobs:
ci:
publish-docs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.x'
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test
run: dotnet test
# Setup environment
- name: Checkout
uses: actions/checkout@v3
- name: Dotnet Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x
source-url: https://nuget.pkg.github.com/MonkeyModdingTroop/index.json
env:
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Cache NuGet packages
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget
# Build and test projects
- name: Install dependencies
run: dotnet restore

- name: Build
run: dotnet build

- name: Test
run: dotnet test

# Generate and upload docs
- run: dotnet tool update -g docfx
- run: docfx ./docfx.json

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './Docs/_site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 5fb396e

Please sign in to comment.