From bd9e25169b3f71b7aa2bd1aa76cdebf18b65ea8d Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Tue, 2 Nov 2021 15:43:35 +0100 Subject: feat(cd): create proper cd --- .github/workflows/cd.yml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/cd.yml (limited to '.github/workflows/cd.yml') diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml new file mode 100644 index 0000000..6416ae4 --- /dev/null +++ b/.github/workflows/cd.yml @@ -0,0 +1,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://git@github.com/ + 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 -- cgit v1.2.3