Skip to content

Commit

Permalink
add release action
Browse files Browse the repository at this point in the history
  • Loading branch information
buffalojoec committed Jul 11, 2024
1 parent ef1fcd1 commit f9264a7
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release

on:
push:
branches:
- master
- release-automation

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Create tags
id: create_tags
run: |
ci/tag-new-crates.sh
git push --tags
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# - name: Publish crates
# id: publish_crates
# needs: create_tags
# run: ci/publish-crates.sh

0 comments on commit f9264a7

Please sign in to comment.