Let's try it again.

This commit is contained in:
2023-09-10 18:15:05 -04:00
parent 05c52545b4
commit ea60551095

View File

@@ -3,7 +3,7 @@ on:
branches:
- main
jobs:
publish-release:
lint-code:
runs-on: ubuntu-latest
steps:
- name: Checkout code
@@ -18,13 +18,15 @@ jobs:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: "main"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-release:
runs-on: ubuntu-latest
steps:
- name: Publish Release
uses: ncipollo/release-action@v1
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
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 }}"