chore: bump react-native
to 0.75 (#1146)
#72
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: Website | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "packages/website/**" | |
- ".github/workflows/website-deployment.yml" | |
jobs: | |
deploy: | |
name: Deploy website | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: "false" | |
- name: Setup project | |
uses: ./.github/actions/setup-project | |
- name: Install dependencies | |
run: yarn | |
working-directory: ./packages/website | |
- name: Setup git user | |
run: ./setup-ci-git-user.sh | |
working-directory: ./.github/scripts | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }} | |
GITHUB_NAME: ${{ vars.GH_BOT_NAME }} | |
GITHUB_EMAIL: ${{ vars.GH_BOT_EMAIL }} | |
GIT_SET_GLOBAL_USER: true | |
- name: Deploy | |
env: | |
GIT_USER: ${{ vars.GH_BOT_NAME }} | |
run: yarn run deploy | |
working-directory: ./packages/website |