Skip to content

Commit

Permalink
[572] bug: try fix release workflow (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
philosowaffle authored Jan 7, 2024
1 parent 1a81b39 commit f4c585e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/publish-ui-dist/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ inputs:
outputs:
artifact:
description: 'Path to the published artifact'
value: ${{ github.workspace }}/dist/${{ inputs.os }}-ui
value: ${{ github.workspace }}/src/ClientUI/bin/Release/${{ inputs.framework }}/${{ inputs.os }}
runs:
using: "composite"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Create Release and Upload Artifacts
uses: ncipollo/release-action@v1
with:
artifacts: "${{ github.workspace }}/dist/console_win_${{ github.event.inputs.version }}.zip,${{ github.workspace }}/dist/ui_win_${{ github.event.inputs.version }}.zip"
artifacts: "${{ github.workspace }}/dist/ui_win_${{ github.event.inputs.version }}.zip"
token: ${{ secrets.GITHUB_TOKEN }}
tag: v${{ github.event.inputs.version }}
allowUpdates: true
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Dto/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public Format()
public bool IncludeTimeInHRZones { get; set; }
public bool IncludeTimeInPowerZones { get; set; }
public string DeviceInfoPath { get; set; }
public string? WorkoutTitleTemplate { get; set; } = "{{PelotonWorkoutTitle}}{{#if PelotonInstructorName}} with {{PelotonInstructorName}}{{/if}}";
public string WorkoutTitleTemplate { get; set; } = "{{PelotonWorkoutTitle}}{{#if PelotonInstructorName}} with {{PelotonInstructorName}}{{/if}}";
public Cycling Cycling { get; set; }
public Running Running { get; set; }
public Rowing Rowing { get; init; }
Expand Down

0 comments on commit f4c585e

Please sign in to comment.