Compare commits

..

2 Commits

Author SHA1 Message Date
Yeicor
ed9251faac fix CI deployment 4 2024-03-10 18:08:13 +01:00
Yeicor
49d0afa616 fix CI deployment 3 2024-03-10 18:05:21 +01:00
2 changed files with 3 additions and 2 deletions

View File

@@ -14,6 +14,8 @@ jobs:
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"
steps: steps:
- uses: "actions/checkout@v4" - uses: "actions/checkout@v4"
with: # Ensure we are not in a detached HEAD state
ref: "master"
- run: "echo 'CLEAN_VERSION=${{ github.ref }}' | sed 's,refs/tags/v,,g' >> $GITHUB_ENV" - run: "echo 'CLEAN_VERSION=${{ github.ref }}' | sed 's,refs/tags/v,,g' >> $GITHUB_ENV"
# Write the new version to package.json # Write the new version to package.json
- uses: "actions/setup-node@v4" - uses: "actions/setup-node@v4"

View File

@@ -21,7 +21,6 @@ concurrency:
jobs: jobs:
rebuild: # Makes sure all artifacts are updated and use the new version rebuild: # Makes sure all artifacts are updated and use the new version
needs: "update-versions"
uses: "./.github/workflows/build.yml" uses: "./.github/workflows/build.yml"
with: with:
ref: "${{ inputs.ref }}" ref: "${{ inputs.ref }}"