-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update deps to enable metadata hash check * chore: update srtool + add on-chain-release-build opts * chore: bump spec versions + cleanup migrations * fmt: taplo * ci: fix srtool fmt * ci: apply proper CLI * attempt2 to enable on-chain-release-build * change srtool build for chevdor/strool-actions action * desperate attempts to get it working * override workdir * Try to set permissions wide open before running docker * add RUST_BACKTRACE * revert to our GHA manual process & add enhancements * fix package name * Output information about srtool * Revert "desperate attempts to get it working" This reverts commit a882fd9. * fix: some scripts * fix bad colon on echo command * Fix missing colon and remove docker publish release * upload wasm to release * fix issue with gchr tags * more semicolon issues * unique name for delete untagged * fix delete_untagged * move delete_untagged under workflows * move delete untagged to manual runs * review bash syntax for wasm build * recover cache and limit sanity check build time --------- Co-authored-by: Guillermo Perez <[email protected]>
- Loading branch information
Showing
16 changed files
with
436 additions
and
389 deletions.
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.