Skip to content

Commit 0f1a613

Browse files
committed
2 parents 48b3454 + a446e1f commit 0f1a613

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/manual.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# This is a basic workflow that is manually triggered
2+
3+
name: Manual workflow
4+
5+
# Controls when the action will run. Workflow runs when manually triggered using the UI
6+
# or API.
7+
on:
8+
workflow_dispatch:
9+
10+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v3
18+
19+
- name: ZIP archive
20+
uses: actions/upload-artifact@v3
21+
with:
22+
name: repo.zip
23+
path: |
24+
common
25+
spotraop
26+
spotupnp
27+
!README.md
28+
!*.zip
29+

0 commit comments

Comments
 (0)