Skip to content

doc: Update brand domain #5

doc: Update brand domain

doc: Update brand domain #5

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Generate version
uses: alepee/calendar-version-action@v1
id: version
with:
dateFormat: "YYYY.0M"
format: "%NOW%.0b%MICRO%"
- name: Create Release
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: v${{ steps.version.outputs.version }}
name: ${{ steps.version.outputs.version }}
draft: false
prerelease: true
generate_release_notes: true