Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,10 @@ jobs:
run: |
sha256sum linux/svtminion.sh | awk '{ print $1 }' > svtminion.sh.sha256
sha256sum windows/svtminion.ps1 | awk '{ print $1 }' > svtminion.ps1.sha256
git commit -a -m "Update sha256 checksums" || git commit -a -m "Update sha256 checksums"
ls -alh
git add svtminion.sh.sha256
git add svtminion.ps1.sha256
git commit -am "Update sha256 checksums" || git commit -am "Update sha256 checksums"

- name: Push Changes
uses: ad-m/github-push-action@b87afee92c6e70ea888be6203a3e9426fda49839
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scripts/update-release-shasum.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ def main(version, sha256sum):
if not line.startswith("-"):
out_contents += line
continue
out_contents += "- {}: ``{}``\n".format(version, sha256sum)
out_contents += f"- {version}: `{sha256sum}`\n"
out_contents += line
updated_version = True
continue

out_contents += line
if line.startswith("## _sha256sums"):
if line.startswith("## _sha256sums:"):
found_anchor = True
if in_contents != out_contents:
README_PATH.write_text(out_contents)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ commonly referred to as guestVars.
In every two-step installation example, you would be well-served to **verify against the SHA256
sum** of the downloaded `svtminion.sh` file.

## _sha256sums
## _sha256sums:

The SHA256 sum of the `svtminion.sh` file, per release, is:

- 2024.12.04: `e7f4d7b242bd495c63e7b3240631411fbe65ac966ff2c1ef93399ceda9b5719f`

If you're looking for a *one-liner* to install Salt Minion, please read below.

Expand Down Expand Up @@ -98,7 +99,6 @@ script action cannot be obtained from `tools.conf`.

Any input passed to the script on the command line will take precedence over:

- 2024.12.04: ``e7f4d7b242bd495c63e7b3240631411fbe65ac966ff2c1ef93399ceda9b5719f``
- The action and config options set in guestVars
- Anything configured in `tools.conf` with the same name.

Expand Down
Loading