d4t_formulas/.github/workflows/checkout.yml
Álvaro González f8c2778726 absolute paths 2
2026-05-13 09:52:02 +02:00

21 lines
No EOL
453 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 $(pwd)