21 lines
445 B
YAML
21 lines
445 B
YAML
name: "Deploy on Comment"
|
|
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: x86_64
|
|
container:
|
|
image: alpine:latest
|
|
if: github.event.issue.pull_request && contains(github.event.comment.body, '/deploy')
|
|
steps:
|
|
- run: apk add nodejs curl
|
|
- uses: forgejo/download-artifact@v4
|
|
with:
|
|
name: package
|
|
- name: Deploy
|
|
run: |
|
|
echo "Deploying..."
|
|
ls -R
|