Skip to content

Commit

Permalink
chore(ci): update release flow with new service account (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric authored Nov 17, 2023
1 parent 9d16a99 commit e289d93
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,20 @@ jobs:
- name: 📋 Release code
run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ github.token }}
GITHUB_TOKEN: ${{ secrets.EXPOBOT_GITHUB_TOKEN }}
GIT_AUTHOR_NAME: Expo CI
GIT_AUTHOR_EMAIL: support+ci@expo.dev
GIT_COMMITTER_NAME: Expo CI
GIT_COMMITTER_EMAIL: support+ci@expo.dev

tags:
needs: publish
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
with:
token: ${{ secrets.EXPOBOT_GITHUB_TOKEN }}

- name: 🏗 Setup Node
uses: actions/setup-node@v3
Expand All @@ -70,7 +76,7 @@ jobs:
cache: yarn

- name: 👷 Force repo to latest
runs: git fetch --all && git pull
run: git fetch --all && git pull

- name: 📦 Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -88,6 +94,11 @@ jobs:
const { version } = require('./package.json')
return semver.major(version)
- name: 👷 Configure git
run: |
git config user.name "Expo CI"
git config user.email "support+ci@expo.dev"
- name: 🧹 Clean repo
run: git clean . -xdf && git reset --hard HEAD && git pull && git fetch --tags

Expand Down

0 comments on commit e289d93

Please sign in to comment.