Skip to content

Commit 99f91d1

Browse files
committed
Working on extension auth
1 parent 9cdaa9a commit 99f91d1

143 files changed

Lines changed: 2144 additions & 430 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,13 @@ jobs:
2121
with:
2222
dotnet-version: 9.0.x
2323

24-
- name: Build
24+
- name: Build API
25+
working-directory: NotionForCmdPalOAuthAPI
26+
run: |
27+
dotnet build --configuration Release
28+
29+
- name: Build Extension
30+
working-directory: CmdPalNotionExtension
2531
run: |
2632
dotnet build --configuration Release -p:GenerateAppxPackageOnBuild=true -p:Platform=x64
2733
dotnet build --configuration Release -p:GenerateAppxPackageOnBuild=true -p:Platform=arm64

.github/workflows/release-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88

99
env:
10-
AZURE_FUNCTIONAPP_PACKAGE_PATH: './src/NotionForCmdPalOAuthAPI'
10+
AZURE_FUNCTIONAPP_PACKAGE_PATH: 'NotionForCmdPalOAuthAPI'
1111
DOTNET_VERSION: '8'
1212

1313
jobs:

.github/workflows/release-notion.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
dotnet-version: 9.0.x
2828

2929
- name: Update Version in manifest
30-
working-directory: "./src/${{ env.project }}"
30+
working-directory: ${{ env.project }}
3131
run: |
3232
$version = "${{github.ref_name}}.0" -replace '^${{ env.tag_prefix }}', ''
3333
@@ -38,6 +38,7 @@ jobs:
3838
Write-Output "Version updated to $version in $xmlFilePath"
3939
4040
- name: Build
41+
working-directory: ${{ env.project }}
4142
run: |
4243
dotnet build --configuration Release -p:GenerateAppxPackageOnBuild=true -p:Platform=x64
4344
dotnet build --configuration Release -p:GenerateAppxPackageOnBuild=true -p:Platform=arm64
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)