summaryrefslogtreecommitdiff
path: root/.github/workflows/cd.yml
blob: 6416ae457aef4e9c5246734ce0a9c08746c0fcb3 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
# File : cd.yml

name: 'cd'
on:
  push:
    branches: [main] 
defaults:
  run:
    shell: 'bash'
jobs:
  lint-test-build:
    name: '[build]'
    runs-on: 'ubuntu-latest'
    steps:
      - name: '[checkout] ${{ github.repository }} project'
        uses: 'actions/checkout@v2'
        with:
          repository: '${{ github.repository }}'
      - name: '[lint]'
        run: |
          echo TBA some linting
      - name: '[test]'
        run: |
          echo TBA some testing
      - name: '[build]'
        run: |
          git config --global url."https://github.com/".insteadOf ssh://[email protected]/
          git config --global url."https://".insteadOf git://
          git config --global url."https://".insteadOf ssh://
          yarn
          yarn build
      - name: '[commit changes]'
        run: |
          git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
          git config --local user.name "github-actions[bot]"
          git add .
          git commit -m "chore: build" -a
      - name: '[push changes]'
        uses: ad-m/github-push-action@master
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          branch: ${{ github.ref }}
...
# End of ci.yml