Skip to content

Bump version: 0.2.3 → 0.2.4 #9

Bump version: 0.2.3 → 0.2.4

Bump version: 0.2.3 → 0.2.4 #9

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
paths:
- "docs/**"
- ".github/workflows/docs.yml"
- "mkdocs.yml"
- "config.yml"
- "pixi.*"
tags:
- v**
pull_request:
branches:
- main
paths:
- "docs/**"
- ".github/workflows/docs.yml"
- "mkdocs.yml"
- "config.yml"
- "pixi.*"
workflow_dispatch:
inputs:
tag:
description: "Tag to deploy"
required: true
default: "v0.0.0"
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
docs-release:
# Don't run on forks
if: github.repository == 'pioneershub/confernce' && (startsWith(github.event.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' && startsWith(github.event.inputs.tag, 'v'))
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# fetch everything so we can checkout the tag
fetch-depth: 0
submodules: recursive
# check out tag if workflow_dispatch
- name: Checkout tag
if: github.event_name == 'workflow_dispatch'
run: |
git checkout tags/${{ github.event.inputs.tag }}
- uses: prefix-dev/[email protected]
with:
environments: default
- name: Configure Git user
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Extract tag name
if: github.event_name != 'workflow_dispatch'
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Tag from workflow_dispatch
if: github.event_name == 'workflow_dispatch'
run: echo "RELEASE_VERSION=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
- name: Deploy with mike 🚀
run: |
pixi run -e default mike deploy --push --update-aliases $RELEASE_VERSION latest