-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (61 loc) · 2.12 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: "Deploy"
on:
workflow_call:
inputs:
dotnet_version:
required: true
type: string
azure_nuget_feed:
required: false
type: string
secrets:
nuget_preview_token:
required: false
nuget_stable_token:
required: false
azure_nuget_token:
required: false
jobs:
upload_doc:
name: "Documentation"
runs-on: "ubuntu-latest"
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
push_artifacts:
name: "Artifacts"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 0 # We need full history for version number
- name: "Download artifacts"
uses: actions/download-artifact@v4
with:
name: "Artifacts"
path: "./build/artifacts/"
- name: "Setup .NET SDK"
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ inputs.dotnet_version }}
# Weird way to authenticate in Azure DevOps Artifacts
# Then, we need to setup VSS_NUGET_EXTERNAL_FEED_ENDPOINTS
- name: "Install Azure Artifacts Credential Provider"
run: wget -qO- https://aka.ms/install-artifacts-credprovider.sh | bash
- name: "Deploy artifacts"
run: dotnet run --project build/orchestrator -- --target=Deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STABLE_NUGET_FEED_TOKEN: ${{ secrets.nuget_stable_token }}
PREVIEW_NUGET_FEED_TOKEN: ${{ secrets.nuget_preview_token }}
VSS_NUGET_EXTERNAL_FEED_ENDPOINTS: '{"endpointCredentials": [{"endpoint":"${{ inputs.azure_nuget_feed }}", "username":"", "password":"${{ secrets.azure_nuget_token }}"}]}'