Skip to content

Commit

Permalink
fix release indent in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
astanziola committed Dec 19, 2022
1 parent cbff30f commit 64d6054
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand All @@ -30,16 +31,16 @@ jobs:
run: mkdocs gh-deploy --force

- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: New release
draft: false
prerelease: false
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: New release
draft: false
prerelease: false

- name: Build and publish
env:
Expand Down

0 comments on commit 64d6054

Please sign in to comment.