Skip to content

Commit

Permalink
feat: first PyPi release
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejgray committed Feb 12, 2024
1 parent c4eba53 commit f227248
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/changelog.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/propose_stable_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Propose Stable Build
on:
workflow_dispatch:
inputs:
release_type:
type: choice
options:
- "patch"
- "minor"
- "major"

jobs:
build_and_publish:
uses: openvoiceos/.github/.github/workflows/propose_semver_release.yml@feat/shared_actions1
with:
python_version: "3.10"
version_file: skill_randomness/version.py
release_type: ${{inputs.release_type}} # build, minor, major
28 changes: 28 additions & 0 deletions .github/workflows/publish_alpha_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish Alpha Build ...aX
on:
push:
branches:
- dev
paths-ignore:
- "ovos_core/version.py"
- "test/**"
- "examples/**"
- ".github/**"
- ".gitignore"
- "LICENSE"
- "CHANGELOG.md"
- "MANIFEST.in"
- "readme.md"
- "scripts/**"
workflow_dispatch:

jobs:
build_and_publish:
uses: openvoiceos/.github/.github/workflows/publish_alpha_release.yml@feat/shared_actions1
secrets: inherit
with:
version_file: skill_randomness/version.py # File location of the version file, default: version.py
python_version: "3.10"
locale_folder: skill_randomness/locale
update_intentfile: test/test_intents.yaml
changelog_file: CHANGELOG.md

0 comments on commit f227248

Please sign in to comment.