fix: @uploadthing/mime-types
exports not supported in Expo
#228
Workflow file for this run
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 - Canary | |
on: | |
pull_request: | |
types: [labeled] | |
branches: | |
- main | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
jobs: | |
release: | |
if: contains(github.event.pull_request.labels.*.name, 'release canary') | |
timeout-minutes: 10 | |
name: Build & Publish a canary release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./tooling/gh-actions/setup | |
- name: Check packages for common errors | |
run: pnpm turbo --filter "./packages/*" build | |
- name: Authenticate to npm | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
- name: Publish canary releases | |
run: node .github/release-canary.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |