Skip to content

Commit

Permalink
#22 Generate release based on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ypo committed Mar 18, 2024
1 parent 180b72b commit ab49cb8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 31 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/crates-io.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Crates.io

on: workflow_dispatch
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

env:
CARGO_TERM_COLOR: always
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: PyPi

on: workflow_dispatch
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
linux:
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/release-pr.yaml

This file was deleted.

0 comments on commit ab49cb8

Please sign in to comment.