Update action to use site_dir in the command line (#572) #548
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: draft release | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
update_release_draft: | |
permissions: | |
# write permission is required to create a github release | |
contents: write | |
runs-on: ubuntu-latest | |
outputs: | |
tag_name: ${{ steps.release-draft.outputs.tag_name }} | |
steps: | |
# Drafts your next Release notes as Pull Requests are merged into "main" | |
- uses: release-drafter/[email protected] | |
id: release-draft | |
with: | |
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml | |
config-name: release-drafter.yml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
update_version: | |
permissions: | |
# write permission is required to push updated version | |
contents: write | |
runs-on: ubuntu-latest | |
needs: update_release_draft | |
env: | |
VERSION: ${{ needs.update_release_draft.outputs.tag_name }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.RELEASEBOT_TOKEN }} | |
- name: Bump setup.py | |
run: | | |
echo "Bumping version to ${VERSION}" | |
echo "${VERSION}" > VERSION | |
- name: Commit and push | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add VERSION | |
if git commit -m "Updating VERSION to ${VERSION}"; then | |
git push -f | |
echo "Pushed update to main" | |
fi |