Skip to content

Commit 53f305f

Browse files
committed
GH action to Deploy the plugin as the artifact
1 parent 64dd93f commit 53f305f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/upload-artifact.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Deploy the plugin as the artifact
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v2
15+
16+
- name: Upload artifact
17+
uses: actions/upload-artifact@v2
18+
with:
19+
name: staging2live-latest
20+
path: |
21+
*
22+
!.gitignore
23+
!.github

0 commit comments

Comments
 (0)