Skip to content

WIP: mod: README.txt (main) #29

WIP: mod: README.txt (main)

WIP: mod: README.txt (main) #29

Workflow file for this run

# YAML
---
name: test-action
on: [push]
jobs:
post:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- id: log
run: echo "tag=$(git describe --tags --always)" >> $GITHUB_OUTPUT
- id: contents
run: git log > ${{ github.event.repository.name }}.txt
- id: publish
env:
GH_TOKEN: ${{ github.token }}
run: gh release create ${{ steps.log.outputs.tag }} ${{ github.event.repository.name }}.txt -R https://github.com/${{ github.repository }}