We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33bfa99 commit cb38a55Copy full SHA for cb38a55
.github/workflows/cd-content-update.yml
@@ -27,7 +27,7 @@ jobs:
27
const releaseTag = latestRelease.data.tag_name;
28
core.setOutput('release_tag', releaseTag);
29
outputs:
30
- ref: ${{ steps.get_latest_release.outputs.release_tag }}
+ ref: refs/tags/${{ steps.get_latest_release.outputs.release_tag }}
31
32
deploy-to-static-file-host:
33
name: Deploy to Static File Host
.github/workflows/cd-deploy.yml
@@ -37,7 +37,7 @@ jobs:
37
38
- name: Replace everything but content with current release
39
run: |
40
- git worktree add ../release tags/${{ inputs.ref }}
+ git worktree add ../release ${{ inputs.ref }}
41
rsync -a --exclude '.git' --exclude 'src/content' --delete ../release/ ./
42
43
- name: Setup pnpm
0 commit comments