Skip to content

chore: add CI workflows to publish sdk #1

chore: add CI workflows to publish sdk

chore: add CI workflows to publish sdk #1

name: Create SDK Release PR
permissions:
contents: write
pull-requests: write
on:
pull_request: {}
workflow_dispatch: {}
jobs:
release:
name: Release
runs-on: ubuntu-latest
container:
# See https://github.com/3box/rust-builder
image: public.ecr.aws/r5b3e0r5/3box/rust-builder:latest
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_PAT }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: git config
run: |
git config --global --add safe.directory '*'
git config user.email "github@3box.io"
git config user.name "Github Automation"
- name: Create release PR
run: make sdk-release-pr