feat(ffi): expose inner_key method (#439) #75
This file contains hidden or 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 crates | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| # Create a PR with the new versions and changelog, preparing the next release. | |
| open-pr: | |
| name: Open release PR | |
| environment: cratesio-publish | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| concurrency: | |
| group: release-plz-${{ github.ref }} | |
| cancel-in-progress: false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 512 | |
| - name: Run release-plz | |
| id: release-plz | |
| uses: Devolutions/actions-public/release-plz@v1 | |
| with: | |
| command: release-pr | |
| git-name: Devolutions Bot | |
| git-email: bot@devolutions.net | |
| github-token: ${{ secrets.DEVOLUTIONSBOT_WRITE_TOKEN }} | |
| - name: Update ffi/wasm/Cargo.lock | |
| if: ${{ steps.release-plz.outputs.did-open-pr == 'true' }} | |
| run: | | |
| $prRaw = '${{ steps.release-plz.outputs.pr }}' | |
| Write-Host "prRaw: $prRaw" | |
| $pr = $prRaw | ConvertFrom-Json | |
| Write-Host "pr: $pr" | |
| Write-Host "Fetch branch $($pr.head_branch)" | |
| git fetch origin "$($pr.head_branch)" | |
| Write-Host "Switch to branch $($pr.head_branch)" | |
| git checkout "$($pr.head_branch)" | |
| Write-Host "Update ./ffi/wasm/Cargo.lock" | |
| cargo update --manifest-path ./ffi/wasm/Cargo.toml | |
| Write-Host "Update last commit" | |
| git add ./ffi/wasm/Cargo.lock | |
| git commit --amend --no-edit | |
| Write-Host "Update the release pull request" | |
| git push --force | |
| shell: pwsh | |
| # Release unpublished packages. | |
| release: | |
| name: Release crates | |
| environment: cratesio-publish | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 512 | |
| - name: Run release-plz | |
| uses: Devolutions/actions-public/release-plz@v1 | |
| with: | |
| command: release | |
| registry-token: ${{ secrets.CRATES_IO_TOKEN }} |