Skip to content

WIP: mod: .github/workflows/test-action.yml (main) #12

WIP: mod: .github/workflows/test-action.yml (main)

WIP: mod: .github/workflows/test-action.yml (main) #12

Workflow file for this run

# YAML
---
name: test-action
on: [push]
jobs:
post:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get tags
run: git fetch --tags origin
- id: log
run: echo "tag=$(git describe --tags --always)" >> $GITHUB_OUTPUT
- id: publish
run: echo gh release create ${{ steps.log.outputs.tag }} ${{ github.repository }}.zip -R https://github.com/${{ github.repository }}