diff --git a/.github/workflows/publish-tagged-commit-to-releases-branch.yml b/.github/workflows/publish-tagged-commit-to-releases-branch.yml index b92bf73..bd561d2 100644 --- a/.github/workflows/publish-tagged-commit-to-releases-branch.yml +++ b/.github/workflows/publish-tagged-commit-to-releases-branch.yml @@ -33,7 +33,7 @@ jobs: run: | mkdir -p /tmp/cloudflare-ddns-edgeos/ while IFS= read -r filename ; do if [ -f ./"$filename" ]; then cp "$filename" /tmp/cloudflare-ddns-edgeos/ ; fi ; done < ./dev-misc/release-file-include - tar -cvz --exclude-vcs -f /tmp/cloudflare-ddns-edgeos.tar.gz /tmp/cloudflare-ddns-edgeos/ + tar -cvz --exclude-vcs -f /tmp/cloudflare-ddns-edgeos.tar.gz -C /tmp cloudflare-ddns-edgeos mkdir ./release_dir && mv /tmp/cloudflare-ddns-edgeos.tar.gz ./release_dir - name: Commit & Push to release branch @@ -44,7 +44,7 @@ jobs: REPO: self BRANCH: releases FOLDER: release_dir - SQUASH_HISTORY: false + SQUASH_HISTORY: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MESSAGE: ${{ steps.tagcheck.outputs.tagname }} diff --git a/README.md b/README.md index 7b85674..86d1c84 100644 --- a/README.md +++ b/README.md @@ -80,12 +80,14 @@ Thus...this project. ## Release/Feature History +### v1.2 + ++ Continuous-Delivery via `Github Action` is configured, build and push artifact to `releases` branch. + ### v1.1 + Automatically create dns record (No need to create record manually in advance). -+ Continuous-Delivery via `Github Action` is configured, build and push artifact to `releases` branch. - + Documentation & comments update (following shell style guideline). ### v1.0-hotfix