File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
name : Upload database
2
2
3
3
# This GitHub Actions workflow checkouts the PostGIS database dump
4
- # pre-populated on @whkchow's computer and upload it as artifact
5
- # and release asset (for a tagged release) on GitHub
4
+ # pre-populated on @whkchow's computer and upload it as release assets
5
+ # (for a tagged release) on GitHub
6
6
7
7
on :
8
8
push :
9
- branches :
10
- - ' **'
9
+ # branches:
10
+ # - '**'
11
11
tags :
12
12
- ' v*'
13
13
workflow_dispatch :
@@ -69,15 +69,15 @@ jobs:
69
69
rm -f *.7z.*
70
70
df -h
71
71
72
- - name : " Upload database dump as GitHub artifact"
73
- uses : actions/upload-artifact@v3
74
- if : " !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
75
- with :
76
- name : opendrr-boundaries-sql
77
- path : |
78
- *.sql
79
- *.sql.*sum
80
- if-no-files-found : error
72
+ # - name: "Upload database dump as GitHub artifact"
73
+ # uses: actions/upload-artifact@v3
74
+ # if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
75
+ # with:
76
+ # name: opendrr-boundaries-sql
77
+ # path: |
78
+ # *.sql
79
+ # *.sql.*sum
80
+ # if-no-files-found: error
81
81
82
82
- name : Split database dump into 2GB chunks (for tagged release)
83
83
if : startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
You can’t perform that action at this time.
0 commit comments