Skip to content

Commit

Permalink
Add workflow to push the nvbench subtree to a remote repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
alliepiper committed Mar 28, 2024
1 parent e182aa3 commit 17d51b0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/sync_nvbench.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Sync nvbench

on:
push:
branches:
#- main
- add_nvbench
paths:
- 'nvbench/**'

jobs:
sync:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Push nvbench subtree
run: |
git subtree push --prefix nvbench [email protected]:alliepiper/nvbench.git subtree_test

0 comments on commit 17d51b0

Please sign in to comment.