env test7 #48
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: Main Deploy Workflow | |
on: | |
push: | |
branches: | |
- main | |
- pangea-merge | |
env: | |
# Setting an environment variable with the value of a configuration variable | |
env_var: ${{ vars.WEB_APP_ENV }} | |
jobs: | |
deploy_web: | |
runs-on: ubuntu-latest | |
environment: staging | |
steps: | |
- uses: actions/checkout@v2 | |
- run: cat .github/workflows/versions.env >> $GITHUB_ENV | |
- name: 'Create env file' | |
run: | | |
touch .env | |
echo $ENV >> .env | |
cat .env | | |
echo "$ENV : $ENV" | |
echo "env_var : $env_var" | |
echo "STAGE : $STAGE" | |
env: | |
ENV: ${{ vars.WEB_APP_ENV }} | |
STAGE: ${{ vars.ENVIRONMENT_STAGE }} | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.FLUTTER_VERSION }} | |
cache: true | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install nodejs -y | |
- run: flutter pub get | |
- name: Prepare web | |
run: ./scripts/prepare-web.sh | |
- name: Build Release Web | |
run: ./scripts/build-web.sh | |
- name: Build Website | |
run: | | |
mv build/web public | |
mv .env public/.env | |
cp public/.env public/.env-staging | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
personal_token: ${{ secrets.PAGES_DEPLOY_TOKEN }} | |
publish_dir: ./public | |
publish_branch: gh-pages | |
# cname: app.staging.pangea.chat.im | |
update_sentry: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Create Sentry release | |
uses: getsentry/action-release@v1 | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | |
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} | |
# SENTRY_URL: https://sentry.io/ | |
with: | |
environment: staging |