chore(deps): update yarn to v3.8.4 #4481
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: Publish on ExpoGo (Develop) | |
on: | |
push: | |
# branches: [develop, alpha, beta, next] | |
branches: | |
- "**" | |
tags-ignore: | |
- v* | |
paths: | |
- "front/**" | |
- ".github/workflows/expo-publish-develop.yml" | |
workflow_dispatch: | |
inputs: | |
tags: | |
description: "Manual workflow" | |
concurrency: | |
cancel-in-progress: true | |
group: expo-dev-${{ github.ref }} | |
jobs: | |
Publish: | |
name: Publish Develop | |
runs-on: ubuntu-latest | |
env: | |
CLEAR_STORAGE: false | |
MATOMO_APPLICATION_ID: 46 | |
MATOMO_ENABLED: true | |
MATOMO_URL: https://matomo.fabrique.social.gouv.fr/ | |
SENTRY_DSN: https://[email protected]/62 | |
SENTRY_ENABLED: true | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
GOOGLE_MAPS_API_KEY: ${{ secrets.GOOGLE_MAPS_API_KEY }} | |
DEEPLINK_DOMAIN: 1000jours.fabrique.social.gouv.fr | |
DEEPLINK_PATH: app-millejours | |
NODE_OPTIONS: --max_old_space_size=8192 | |
EPDS_WIDGET_URL: https://nos1000jours-blues-epds-widget.fabrique.social.gouv.fr | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
- uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- id: env | |
uses: socialgouv/kontinuous/.github/actions/env@v1 | |
with: | |
subdomain: backoffice | |
- name: Yarn | |
run: | | |
env | |
cd front | |
yarn install | |
eas update --auto --non-interactive | |
env: | |
API_URL: "https://${{ steps.env.outputs.subdomain_backoffice }}.ovh.fabrique.social.gouv.fr" | |
BRANCH_NAME: ${{ steps.env.outputs.branch }} | |
YARN_IGNORE_NODE: "1" |