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
1 change: 1 addition & 0 deletions .github/RELEASE_NOTES_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### Highlights

- Fixed the release checksum manifest so downloaded assets verify directly with `sha256sum -c sha256sums.txt`.
- Added reversible one-time External ID migration for existing AWS setups with `external-id --value` and `external-id --clear`.
- Added AWS GovCloud workflows for both regular Forward Organizations/NQE discovery and reviewed standalone-account manifests.
- Added `onboard-accounts` and `sync-accounts` for environments where AWS Organizations is unavailable by policy.
Expand Down
22 changes: 8 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,10 @@ jobs:
[ -f "$file" ] || continue
tar -czf "${file}.tar.gz" -C dist "$(basename "$file")"
done
for file in dist/awssync-*; do
[ -f "$file" ] || continue
case "$file" in
*.tar.gz|*.txt)
continue
;;
esac
sha256sum "$file" >> dist/sha256sums.txt
done
for file in dist/awssync-*.tar.gz; do
[ -f "$file" ] || continue
sha256sum "$file" >> dist/sha256sums.txt
done
(
cd dist
sha256sum awssync-* > sha256sums.txt
)
- name: Verify artifacts are executable and checksums match
run: |
for file in \
Expand All @@ -107,7 +98,10 @@ jobs:
exit 1
fi
done
sha256sum -c dist/sha256sums.txt
(
cd dist
sha256sum -c sha256sums.txt
)
- name: Generate build provenance
uses: actions/attest-build-provenance@v4
with:
Expand Down