Skip to content

Commit

Permalink
chore: autodeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
esoadamo committed Jul 27, 2024
1 parent fd06a42 commit 661ff4f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/publish-repo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: publish-repo
on:
push:
branches:
- 'master'
- 'main'
- 'prod'

jobs:
deploy-prod:
runs-on: ubuntu-latest
env:
REPO_DEPLOY_SSH_KEY: ${{ secrets.REPO_DEPLOY_SSH_KEY }}
steps:
- run: mkdir src
- uses: actions/checkout@v2
with:
fetch-depth: 100
path: 'src'
- name: run deploy
shell: bash
run: |
cd src &&
git clone https://github.com/QRGameStudio/util-action-build.git &&
bash util-action-build/build.sh

0 comments on commit 661ff4f

Please sign in to comment.