Skip to content

Commit 0d6c363

Browse files
committed
Add workflow to run copy_to_separate_releases.rb
1 parent 22e3837 commit 0d6c363

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/copy.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Copy assets to separate releases
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
copy:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: ruby/setup-ruby@v1
10+
with:
11+
ruby-version: '3.4'
12+
- run: ruby copy_to_separate_releases.rb
13+
env:
14+
GH_TOKEN: ${{ github.token }}
15+
GH_REPO: ${{ github.repository }}

0 commit comments

Comments
 (0)