Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
add release action
Browse files Browse the repository at this point in the history
  • Loading branch information
buffalojoec committed Jul 10, 2024
1 parent 500ffa5 commit b75d850
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 b75d850

Please sign in to comment.