Skip to content

Commit

Permalink
Self publish to GitHub Pages on release
Browse files Browse the repository at this point in the history
  • Loading branch information
shepmaster committed May 11, 2024
1 parent d1abf39 commit dc35335
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: "Publish crate to our Margo registry"
on:
push:
tags:
- "*"

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Select Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Package crate
run: |-
set -eu
cargo package
mkdir /tmp/crates
mv ./target/package/*.crate /tmp/crates
- name: Checkout GitHub Pages
uses: actions/checkout@v4
with:
ref: gh-pages

- name: Publish crate
uses: integer32llc/margo-actions@main
with:
crates: /tmp/crates/*.crate
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Commit and push to GitHub Pages
run: |-
set -eu
git config user.email "[email protected]"
git config user.name "Margo GitHub Action"
git add .
git commit -m 'Publish ${{ github.event.ref }}'
git push origin gh-pages

0 comments on commit dc35335

Please sign in to comment.