From 0f8447807ee61dfb477d172600332d9f4abd1b31 Mon Sep 17 00:00:00 2001 From: Chris Simon Date: Fri, 20 Sep 2024 15:39:19 +1000 Subject: [PATCH] ci: temporary change to allow manual publish --- .github/workflows/contextive-publish.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/contextive-publish.yml b/.github/workflows/contextive-publish.yml index 4230a61..ac4aba7 100644 --- a/.github/workflows/contextive-publish.yml +++ b/.github/workflows/contextive-publish.yml @@ -3,12 +3,12 @@ on: release: types: [published] ## Keeping in Comments as may be helpful for future publish-rescue requirements - # workflow_dispatch: - # inputs: - # release: - # description: 'Release to publish' - # required: true - # type: string + workflow_dispatch: + inputs: + release: + description: 'Release to publish' + required: true + type: string env: @@ -27,8 +27,8 @@ jobs: matrix: ${{ fromJSON(needs.get-matrix.outputs.matrix) }} uses: ./.github/workflows/contextive-runtime-publish.yml with: - release: ${{ github.ref_name }} - # release: ${{ inputs.release }} # Use this if switching to manual publish + # release: ${{ github.ref_name }} + release: ${{ inputs.release }} # Use this if switching to manual publish dotnet_runtime: ${{ matrix.dotnet_runtime }} os: ${{ matrix.os }} vsce_platform: ${{ matrix.vsce_platform }} @@ -54,8 +54,8 @@ jobs: - name: Build id: build - run: dotnet fsi intellij/build.fsx -- --release ${{ github.ref_name }} - # run: dotnet fsi intellij/build.fsx -- --release ${{ inputs.release }} # Use this if switching to manual publishg + # run: dotnet fsi intellij/build.fsx -- --release ${{ github.ref_name }} + run: dotnet fsi intellij/build.fsx -- --release ${{ inputs.release }} # Use this if switching to manual publishg working-directory: src env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}