|
| 1 | +# This is a basic workflow to help you get started with Actions |
| 2 | + |
| 3 | +name: CD |
| 4 | + |
| 5 | +# Controls when the action will run. |
| 6 | +on: |
| 7 | + # Triggers the workflow on push or pull request events but only for the main branch |
| 8 | + push: |
| 9 | + branches: [ main ] |
| 10 | + pull_request: |
| 11 | + branches: [ main ] |
| 12 | + |
| 13 | + # Allows you to run this workflow manually from the Actions tab |
| 14 | + workflow_dispatch: |
| 15 | + |
| 16 | +# A workflow run is made up of one or more jobs that can run sequentially or in parallel |
| 17 | +jobs: |
| 18 | + # This workflow contains a single job called "build" |
| 19 | + deploy-staging: |
| 20 | + if: github.ref == 'refs/heads/main' |
| 21 | + # The type of runner that the job will run on |
| 22 | + runs-on: ubuntu-latest |
| 23 | + environment: staging |
| 24 | + |
| 25 | + # Steps represent a sequence of tasks that will be executed as part of the job |
| 26 | + steps: |
| 27 | + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it |
| 28 | + - uses: actions/checkout@v2 |
| 29 | + |
| 30 | + # Runs a single command using the runners shell |
| 31 | + - name: Run a one-line script |
| 32 | + run: echo Hello, world! |
| 33 | + |
| 34 | + # Runs a set of commands using the runners shell |
| 35 | + - name: Run a multi-line script |
| 36 | + run: | |
| 37 | + echo Add other actions to build, |
| 38 | + echo test, and deploy your project. |
| 39 | + |
| 40 | + deploy-production: |
| 41 | + needs: [deploy-staging] |
| 42 | + if: github.ref == 'refs/heads/main' |
| 43 | + # The type of runner that the job will run on |
| 44 | + runs-on: ubuntu-latest |
| 45 | + environment: production |
| 46 | + |
| 47 | + # Steps represent a sequence of tasks that will be executed as part of the job |
| 48 | + steps: |
| 49 | + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it |
| 50 | + - uses: actions/checkout@v2 |
| 51 | + |
| 52 | + # Runs a single command using the runners shell |
| 53 | + - name: Run a one-line script |
| 54 | + run: echo Hello, world! |
| 55 | + |
| 56 | + # Runs a set of commands using the runners shell |
| 57 | + - name: Run a multi-line script |
| 58 | + run: | |
| 59 | + echo Add other actions to build, |
| 60 | + echo test, and deploy your project. |
| 61 | + |
0 commit comments