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 f53963a commit 94c1976Copy full SHA for 94c1976
.github/workflows/build.yaml
@@ -36,6 +36,11 @@ jobs:
36
runs-on: ubuntu-latest
37
38
steps:
39
+ - name: Checkout repository
40
+ uses: actions/checkout@v4
41
+ with:
42
+ fetch-depth: 0 # Ensure full history
43
+
44
- name: Download release artifact
45
uses: actions/download-artifact@v4
46
with:
@@ -47,3 +52,4 @@ jobs:
47
52
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
53
run: |
49
54
gh release create v1.0.0 ./github-action-test/github-action-test --title "Release v1.0.0" --notes "Automated release"
55
0 commit comments