Skip to content

Commit

Permalink
👷 update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyongyu authored Oct 2, 2023
1 parent 79ef7e2 commit 5601771
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
groups:
actions:
patterns:
- "*"

- package-ecosystem: github-actions
directory: "/.github/actions/setup-python"
schedule:
interval: daily
groups:
actions:
patterns:
- "*"
21 changes: 21 additions & 0 deletions .github/workflows/release-guild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release Guild

on:
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v3

- name: Setup Python environment
uses: ./.github/actions/setup-python

- name: Build Package
run: poetry build

- name: Publish Package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 5601771

Please sign in to comment.