-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v0.13.0 #1898
Merged
Merged
Release v0.13.0 #1898
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
dd23213
chore: update deps to enable metadata hash check
wischli 0a26688
chore: update srtool + add on-chain-release-build opts
wischli 3da4e2e
chore: bump spec versions + cleanup migrations
wischli 595b275
fmt: taplo
wischli d90644b
ci: fix srtool fmt
wischli 4cb3180
ci: apply proper CLI
wischli 3e02647
attempt2 to enable on-chain-release-build
wischli 4f58c15
change srtool build for chevdor/strool-actions action
gpmayorga a882fd9
desperate attempts to get it working
wischli 805273f
override workdir
gpmayorga 7dd5f48
Try to set permissions wide open before running docker
gpmayorga 559e568
add RUST_BACKTRACE
gpmayorga 9d142f8
revert to our GHA manual process & add enhancements
gpmayorga b3a97bc
fix package name
gpmayorga 8a259a4
Output information about srtool
gpmayorga 99dce4b
Revert "desperate attempts to get it working"
wischli 4601e21
fix: some scripts
wischli 4ee87b6
fix bad colon on echo command
gpmayorga a649876
Fix missing colon and remove docker publish release
gpmayorga cfa9880
upload wasm to release
gpmayorga 6472be0
fix issue with gchr tags
gpmayorga 4a981c0
more semicolon issues
gpmayorga e52d367
Merge branch 'main' into release-v0.13.0
gpmayorga 5edb9bf
unique name for delete untagged
gpmayorga d43b773
fix delete_untagged
gpmayorga ac4d669
move delete_untagged under workflows
gpmayorga acc6ff5
move delete untagged to manual runs
gpmayorga c4785b1
review bash syntax for wasm build
gpmayorga 209167e
recover cache and limit sanity check build time
gpmayorga File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Delete untagged | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
delete_untagged: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
# id-token: write | ||
steps: | ||
- name: Delete untagged ghcr | ||
uses: Chizkiyahu/delete-untagged-ghcr-action@v3 | ||
with: | ||
# Personal access token (PAT) used to fetch the repository. The PAT is configured | ||
# with the local git config, which enables your scripts to run authenticated git | ||
# commands. The post-job step removes the PAT. | ||
# needs delete:packages permissions | ||
# required: true | ||
# [Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets) | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
# Repository name or name with owner | ||
# Delete only from repository name | ||
# Default: ${{ github.repository }} | ||
repository: 'centrifuge-chain' | ||
# 'The repository owner name' | ||
# Default: ${{ github.repository_owner }} | ||
# repository_owner: '' | ||
# 'The package names' | ||
# Delete only from comma separated package names | ||
# required: false | ||
package_name: 'centrifuge-chain' | ||
# Delete only package versions without tag | ||
# required: false | ||
# Default: true | ||
# choices: true, false | ||
untagged_only: true | ||
# Except untagged multiplatform packages from deletion | ||
# only for untagged_only=true | ||
# needs docker installed | ||
except_untagged_multiplatform: false | ||
# the owner type | ||
# required: true | ||
# choices: org, user | ||
owner_type: 'org' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tech-debt: should it be maintained in the repo or removed? @gpmayorga
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch. IMO, we can remove this!