fix: oci cache store should fallback to copy when rename won't work (… #43
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
name: release-plz | |
permissions: | |
pull-requests: write | |
contents: write | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: "${{ github.workflow }}" | |
cancel-in-progress: true | |
jobs: | |
release-plz: | |
name: release-plz | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/create-github-app-token@v1 | |
id: generate-token | |
with: | |
app-id: "${{ secrets.EDERA_CULTIVATION_APP_ID }}" | |
private-key: "${{ secrets.EDERA_CULTIVATION_APP_PRIVATE_KEY }}" | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
token: "${{ steps.generate-token.outputs.token }}" | |
- uses: dtolnay/rust-toolchain@stable | |
- run: ./hack/ci/install-linux-deps.sh | |
- name: release-plz | |
uses: MarcoIeni/[email protected] | |
env: | |
GITHUB_TOKEN: "${{ steps.generate-token.outputs.token }}" | |
CARGO_REGISTRY_TOKEN: "${{ secrets.KRATA_RELEASE_CARGO_TOKEN }}" |