diff options
-rw-r--r-- | .github/workflows/deploy_snapshot.yml | 4 | ||||
-rwxr-xr-x | scripts/deploy-snapshot.sh | 18 | ||||
-rw-r--r-- | scripts/snapshot-changelog-template.txt | 2 |
3 files changed, 14 insertions, 10 deletions
diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml index 791bdf2e..87a06b2c 100644 --- a/.github/workflows/deploy_snapshot.yml +++ b/.github/workflows/deploy_snapshot.yml @@ -3,6 +3,10 @@ on: branches: - develop +permissions: + contents: write + actions: write + name: Deploy snapshot builds jobs: deploy-release-snapshot: diff --git a/scripts/deploy-snapshot.sh b/scripts/deploy-snapshot.sh index f5e3f971..7bae493c 100755 --- a/scripts/deploy-snapshot.sh +++ b/scripts/deploy-snapshot.sh @@ -19,7 +19,7 @@ function overwrite_remote_tag() { } function has_release() { - gh release view "${LATEST_TAG}" &>/dev/null + gh release view "${LATEST_TAG}" echo "$?" } @@ -28,9 +28,9 @@ function delete_release() { } function create_rev_file() { - pushd "${ASSET_DIRECTORY}" || return + pushd "${ASSET_DIRECTORY}" || exit 1 echo "${CURRENT_REV}" | tee rev-hash.txt - popd || return + popd || exit 1 } function create_release() { @@ -38,19 +38,19 @@ function create_release() { CHANGELOG_FILE="$(mktemp)" cp scripts/snapshot-changelog-template.txt "${CHANGELOG_FILE}" sed -i "s/__SNAPSHOT_REV__/${CURRENT_REV}/" "${CHANGELOG_FILE}" - pushd "${ASSET_DIRECTORY}" || return + pushd "${ASSET_DIRECTORY}" || exit 1 gh release create --prerelease --title "Latest snapshot build" --notes-file "${CHANGELOG_FILE}" "${LATEST_TAG}" ./* - popd || return + popd || exit 1 } overwrite_local_tag -if [[ "$(has_release)" -eq 0 ]]; then - delete_release -fi - create_rev_file overwrite_remote_tag +if [[ "$(has_release)" -eq 0 ]]; then + delete_release +fi + create_release diff --git a/scripts/snapshot-changelog-template.txt b/scripts/snapshot-changelog-template.txt index e6641d15..8cb8fb2f 100644 --- a/scripts/snapshot-changelog-template.txt +++ b/scripts/snapshot-changelog-template.txt @@ -1,3 +1,3 @@ -Latest release for APS from revision __SNAPSHOT_REV__ +Snapshot build of APS from revision __SNAPSHOT_REV__ Consult the build types documentation [here](https://docs.passwordstore.app/docs/users/build-types) for the differences between free and nonFree builds. |