Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:


- name: Execute dotnet pack with production version (dev or future)
if: ${{ github.ref_name == 'dev' || github.ref_name == 'future'}}
if: ${{ github.ref_name == 'dev' || github.ref_name == 'future' || startsWith(github.ref, '/refs/heads/rc/')}}
run: |
PRODUCTION_VERSION="$(cat VERSION)"-"${{github.ref_name}}"."${{github.run_number}}"
echo "PRODUCTION_VERSION = ${PRODUCTION_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

# Use if dev branch
- name: Publish on MyGet-CI
if: ${{ github.ref == 'refs/heads/dev' }} # dev branche is published to myget moryx
if: ${{ github.ref == 'refs/heads/dev' || base_ref == 'dev') }} # dev branche is published to myget moryx
env:
MORYX_NUGET_APIKEY: ${{secrets.MYGET_TOKEN}}
MORYX_PACKAGE_TARGET: ${{ inputs.MORYX_PACKAGE_TARGET_DEV }}
Expand Down