diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-11 22:14:15 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-11 22:14:15 +0300 |
commit | 396f3dcc30bf81da0baf39a0f783dc0adb967d74 (patch) | |
tree | 9f722cebfb6252b70f493661b464a2254abc686b /.gitea/workflows | |
parent | 2a86fd34f6d99e43eb586f5e656a6c9cb19657a7 (diff) | |
download | popov.link-396f3dcc30bf81da0baf39a0f783dc0adb967d74.tar.xz popov.link-396f3dcc30bf81da0baf39a0f783dc0adb967d74.zip |
Added testing Gitea Action
Diffstat (limited to '.gitea/workflows')
-rw-r--r-- | .gitea/workflows/deploy.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..8c3994d --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,9 @@ +name: Deploy +on: [push, pull_request] + +jobs: + build_and_deploy: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - run: echo "Deploying to production" |