Files
test_prod_deploy/.gitea/workflows/merge_prod.yaml
2025-04-02 13:15:41 +03:00

19 lines
355 B
YAML

name: Simple Deploy Pipeline
on:
push:
branches:
- main
jobs:
print-message:
name: Print Welcome Message
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Print message
run: echo "Красота во всем"