Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanLua authored Dec 10, 2024
1 parent 7f5e9ee commit ce208b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
platform: [x64, x86, ARM64]

env:
SOLUTION_NAME: FluentAutoClicker.sln
NAME: FluentAutoClicker
Solution_Name: FluentAutoClicker.sln
Dir_Name: FluentAutoClicker

steps:
- name: Checkout repository
Expand All @@ -35,7 +35,7 @@ jobs:
uses: microsoft/setup-msbuild@v2

- name: Restore the application
run: msbuild $env:SOLUTION_NAME /t:Restore /p:Configuration=$env:Configuration
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}

Expand All @@ -46,7 +46,7 @@ jobs:
[IO.File]::WriteAllBytes("$certificatePath", $pfx_cert_byte)
- name: Create the app package
run: msbuild $env:SOLUTION_NAME /p:Configuration=$env:Configuration /p:Platform=$env:Platform /p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode /p:AppxBundle=$env:Appx_Bundle /p:PackageCertificateKeyFile=GitHubActionsWorkflow.pfx /p:AppxPackageDir="$env:Appx_Package_Dir" /p:GenerateAppxPackageOnBuild=true
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration /p:Platform=$env:Platform /p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode /p:AppxBundle=$env:Appx_Bundle /p:PackageCertificateKeyFile=GitHubActionsWorkflow.pfx /p:AppxPackageDir="$env:Appx_Package_Dir" /p:GenerateAppxPackageOnBuild=true
env:
Appx_Bundle: Never
Appx_Package_Build_Mode: SideloadOnly
Expand All @@ -61,5 +61,5 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: MSIX Package (${{ matrix.configuration }}, ${{ matrix.platform }})
path: ${{ github.workspace }}\$env:NAME\Packages\**
path: ${{ github.workspace }}\$env:Dir_Name\Packages\**
compression-level: 0

0 comments on commit ce208b8

Please sign in to comment.