d4t_formulas/.github/workflows/checkout.yml
Álvaro González 4d77a6a923 test checkout
2026-05-13 09:47:48 +02:00

21 lines
No EOL
448 B
YAML

name: Create release from tag
on:
push:
tags:
- 'test*'
jobs:
create_release:
runs-on: ubuntu-latest
permissions:
contents: write # needed to create releases
steps:
- name: Environment Variables
run: pwd; env
- name: Checkout
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh repo clone $GITHUB_REPOSITORY -- --depth 1
- name: List files
run: find .