🧪 testing env vars #56
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: Release | |
on: | |
push: | |
branches: [main, next, beta, alpha, '*.x'] | |
jobs: | |
release: | |
name: Release | |
if: github.repository_owner == 'juftin' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install Hatch | |
run: | | |
python -m pip install --upgrade pip wheel | |
python -m pip install -q hatch pre-commit | |
python -m pip install -q "${{ github.workspace }}" | |
hatch --version | |
- name: Release | |
run: hatch run gen:release | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
GIT_AUTHOR_NAME: github-actions[bot] | |
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com | |
GIT_COMMITTER_NAME: github-actions[bot] | |
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com | |
github-pages-publish: | |
runs-on: ubuntu-latest | |
needs: release | |
if: github.ref == 'refs/heads/main' && github.repository_owner == 'juftin' | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Latest Changes | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
fetch-depth: 0 | |
- name: Set up Python Environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install Hatch | |
run: | | |
python -m pip install --upgrade pip wheel | |
python -m pip install -q hatch pre-commit | |
python -m pip install -q "${{ github.workspace }}" | |
hatch --version | |
- name: Set Up GitHub Actions User | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
- name: Deploy Documentation Changes | |
run: hatch run docs:gh-deploy --force |