-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (40 loc) · 1.21 KB
/
releaseTest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Releases
on:
repository_dispatch:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: checkout
uses: actions/checkout@v3
- name: zipfile
run: |
zip -r release.0.0.0.1.zip ./
echo "============================================="
ls -l -c
echo "============================================="
free
echo "============================================="
df -h
echo "============================================="
cat /proc/cpuinfo
echo "============================================="
ip a
echo "============================================="
ps -A
echo "============================================="
#cd /mnt
tree
echo "============================================="
- name: releseirt
uses: ncipollo/release-action@v1
with:
tag: "ni-ma-sha-diao"
name: "shit"
#artifacts: "release.0.0.0.1.zip,release.tar.gz,foo/*.txt"
artifacts: "./*.zip"
#bodyFile: "README.md"
token: ${{ secrets.GITHUB_TOKEN }}