fix(ld_proxy): correctly set wrapper identity (#138) #19
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: Tag Packages | |
on: | |
push: | |
branches: [ "main" ] | |
env: | |
BUN_VERSION: 1.1.43 | |
jobs: | |
tag-and-push: | |
if: ${{ github.event_name != 'push' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out packages repository | |
uses: actions/checkout@v4 | |
- name: Install Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: ${{ env.BUN_VERSION }} | |
- name: Install Tangram | |
run: | | |
curl -fsSL https://tangram.dev/install.sh | bash | |
echo "${HOME}/.tangram/bin" >> $GITHUB_PATH | |
- name: Tag and push all packages | |
shell: bash | |
run: | | |
bun run auto -p | |