Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0511be8

Browse files
committedFeb 7, 2025··
build: attempt az login via oidc
1 parent ee6c197 commit 0511be8

File tree

1 file changed

+6
-30
lines changed

1 file changed

+6
-30
lines changed
 

‎.github/workflows/docs.yml

+6-30
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish documentation
33
on:
44
push:
55
branches:
6-
- main
6+
- erick-test
77
tags:
88
- v[0-9]+.[0-9]+.[0-9]+*
99

@@ -13,33 +13,9 @@ jobs:
1313
docs:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- name: Generate GitHub App token
17-
uses: electron/github-app-auth-action@384fd19694fe7b6dcc9a684746c6976ad78228ae # v1.1.1
18-
id: generate-token
16+
- name: Azure login
17+
uses: azure/login@a65d910e8af852a8061c627c456678983e180302 # v2.2.0
1918
with:
20-
creds: ${{ secrets.GH_APP_CREDS }}
21-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag: v4.2.2
22-
with:
23-
token: ${{ steps.generate-token.outputs.token }}
24-
- name: Fetch all git branches
25-
run: git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
26-
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # tag: v4.2.0
27-
with:
28-
node-version: lts/*
29-
- run: yarn --frozen-lockfile
30-
- run: yarn build:docs
31-
- name: Prepare docs
32-
uses: malept/github-action-gh-pages@f7952a65c4b763dc84b824a530dc38bd375ac91e # tag: v1.4.0
33-
with:
34-
defaultBranch: main
35-
noCommit: true
36-
showUnderscoreFiles: true
37-
versionDocs: true
38-
env:
39-
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
40-
- name: Commit docs
41-
uses: dsanders11/github-app-commit-action@43de6da2f4d927e997c0784c7a0b61bd19ad6aac # v1.5.0
42-
with:
43-
fail-on-no-changes: false
44-
message: 'Publish [skip ci]'
45-
token: ${{ steps.generate-token.outputs.token }}
19+
client-id: ${{ secrets.AZURE_CLIENT_ID }}
20+
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
21+
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

0 commit comments

Comments
 (0)
Please sign in to comment.