Skip to content

Commit

Permalink
Merge pull request #388 from qonto/turn-off-deploy
Browse files Browse the repository at this point in the history
Disable automatic deployment of the website
  • Loading branch information
dcyriller authored Oct 11, 2021
2 parents de73e2f + 2ff7952 commit 8f2f4c5
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/deploy-documentation.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: Deploy
# name: Deploy

env:
FORCE_COLOR: 1
# env:
# FORCE_COLOR: 1

on:
push:
branches:
- master
tags:
- '*'
# on:
# push:
# branches:
# - master
# tags:
# - '*'

jobs:
deploy:
environment: github-pages
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
name: Deploy
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
# jobs:
# deploy:
# environment: github-pages
# env:
# DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
# name: Deploy
# runs-on: ubuntu-latest
# if: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' }}
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v2
# with:
# node-version: ${{ env.NODE_VERSION }}

- run: yarn
- run: yarn ember deploy production
# - run: yarn
# - run: yarn ember deploy production

0 comments on commit 8f2f4c5

Please sign in to comment.