Merge pull request #217 from TeamPiickle/sprint/4th #10
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: build and push code | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
git-push: | |
name: build and push | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: borales/[email protected] | |
with: | |
cmd: install # will run `yarn install` command | |
- uses: borales/[email protected] | |
with: | |
cmd: build # will run `yarn build` command | |
- uses: cpina/github-action-push-to-another-repository@main | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | |
with: | |
source-directory: dist/ | |
destination-github-username: 'TeamPiickle' | |
destination-repository-name: 'express-build' | |
user-email: [email protected] | |
target-branch: main | |
# deploy: | |
# name: deploy pm2 | |
# needs: git-push | |
# runs-on: [self-hosted, production] | |
# steps: | |
# - name: run shell script | |
# run: /home/ubuntu/deploy-piickle-server.sh |