You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Bug] release artifact tarball containing a unexpected parent directory. (#7)
* [Feat] Continuous Delivery triggered on specific tag push
workflow trigger modification-> add `on:push:tag:v*`
renamed: .github/workflows/manual-triggered-tag-based-release.yml
-> .github/workflows/publish-tagged-commit-to-releases-branch.yml
* [Bug] release artifact tarball containing a unexpected parent directory.
Fixed by `tar -C`.
`releases` branch history will be squashed.
Copy file name to clipboardExpand all lines: .github/workflows/publish-tagged-commit-to-releases-branch.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ jobs:
33
33
run: |
34
34
mkdir -p /tmp/cloudflare-ddns-edgeos/
35
35
while IFS= read -r filename ; do if [ -f ./"$filename" ]; then cp "$filename" /tmp/cloudflare-ddns-edgeos/ ; fi ; done < ./dev-misc/release-file-include
36
-
tar -cvz --exclude-vcs -f /tmp/cloudflare-ddns-edgeos.tar.gz /tmp/cloudflare-ddns-edgeos/
36
+
tar -cvz --exclude-vcs -f /tmp/cloudflare-ddns-edgeos.tar.gz -C /tmpcloudflare-ddns-edgeos
0 commit comments