Skip to content

Commit

Permalink
Adding release files for ios
Browse files Browse the repository at this point in the history
  • Loading branch information
y3fers0n committed Nov 4, 2024
1 parent 3677273 commit 789ad44
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ jobs:
name: Github Release
runs-on: ubuntu-latest
steps:
- name: Set up Git
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- uses: actions/checkout@v4
with:
ref: main
Expand All @@ -30,11 +34,15 @@ jobs:
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
- name: build packages
run: |
git checkout -b release-v${{ github.event.inputs.version || steps.vars.outputs.tag }}
bun install
bun run build:packages
bun run test
bun run rename ${{ github.event.inputs.version || steps.vars.outputs.tag }}
bun run publish
git add .
git commit -m "feat: Adding release files"
git push origin release-v${RELEASE_VERSION}
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
Expand Down

0 comments on commit 789ad44

Please sign in to comment.