Files
virtfusion-whmcs-module/.github/workflows/publish-release.yml
2023-09-10 18:32:05 -04:00

23 lines
526 B
YAML

---
name: Publish Release
on:
push:
branches:
- main
jobs:
linter:
uses: ./.github/workflows/linter.yml
publish-release:
runs-on: ubuntu-latest
needs: linter
steps:
- name: Publish Release
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: false
name: "0.0.${{ github.run_number }}"
tag: "0.0.${{ github.run_number }}"
body: "Release 0.0.${{ github.run_number }}"