Skip to content

Production workflow

Production workflow #3

Workflow file for this run

name: Production workflow
on:
workflow_run:
workflows: ["Release workflow"]
types:
- completed
branches:
- main
schedule:
- cron: '*/15 * * * *'
jobs:
publish-prod:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Hello world action
run: echo "Hello world"
- name: print current git tag
run: git describe