ci/cd - fix wrong VERSION path for testing release

This commit is contained in:
florian 2023-08-15 21:01:06 +02:00
parent c03b1bb20b
commit cd825cd341
No known key found for this signature in database
GPG key ID: 3D80806F12602A7C
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ jobs:
uses: actions/checkout@v3
- name: Replace VERSION
if: inputs.RELEASE == 'testing'
run: echo -n testing > VERSION
run: echo -n testing > VERSION && echo -n testing > src/VERSION
- name: Setup SSH for ARM node
if: inputs.CACHE_SUFFIX == 'arm'
run: |

View file

@ -44,7 +44,7 @@ jobs:
uses: actions/checkout@v3
- name: Replace VERSION
if: inputs.RELEASE == 'testing'
run: echo -n testing > VERSION
run: echo -n testing > VERSION && echo -n testing > src/VERSION
- name: Extract arch
run : |
echo "ARCH=${{ env.PLATFORMS }}" | sed 's/linux//g' | sed 's@/@@g' >> "$GITHUB_ENV"