We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a4587 commit e3356c8Copy full SHA for e3356c8
1 file changed
.github/workflows/makedb.yml
@@ -0,0 +1,38 @@
1
+name: db
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
7
+ workflow_dispatch:
8
9
+jobs:
10
+ makedb:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@main
15
16
+ - name: build db
17
+ run: bash makedb.sh
18
19
+ - name: remove old release
20
+ env:
21
+ GH_TOKEN: ${{ secrets.GTOK }}
22
+ GH_REPO: ${{ github.repository }}
23
+ run: gh release delete owcdb -y
24
+ continue-on-error: true
25
26
+ - name: publish release
27
28
29
30
+ run: >
31
+ gh release create owcdb
32
+ owcdb.txt
33
+ --draft=false
34
+ --latest
35
+ -t "Community profiles DB"
36
+ -n "This db is always up to date"
37
38
0 commit comments