Skip to content

Commit b443475

Browse files
authored
Merge branch 'dev' into mm-dev--api
2 parents 30d8789 + 14434be commit b443475

30 files changed

+85231
-281
lines changed

.github/workflows/docker-dev.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ jobs:
3030
- name: checkout code
3131
uses: actions/checkout@v2
3232
- name: donwload schema
33-
run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
33+
run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
34+
- name: donwload schema
35+
run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld
36+
3437
# - name: Run tests
3538
# run: go test -v -p=1 -timeout=0 ./...
3639
- id: binary

.github/workflows/docker.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ jobs:
3232
- name: checkout code
3333
uses: actions/checkout@v2
3434
- name: donwload schema
35-
run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
35+
run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
36+
- name: donwload schema
37+
run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld
38+
3639
# - name: Run tests
3740
# run: go test -v -p=1 -timeout=0 ./...
3841
- id: binary

.github/workflows/release_gleaner.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: donwload schema
24-
run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
25-
# - name: Run tests
24+
run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
25+
- name: donwload schema
26+
run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld
27+
28+
# - name: Run tests
2629
# run: go test -v -p=1 -timeout=0 ./...
2730
- uses: wangyoucao577/[email protected]
2831
with:

.github/workflows/release_gleaner_v3.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: donwload schema
24-
run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
24+
run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
25+
- name: donwload schema
26+
run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld
2527
# - name: Run tests
2628
# run: go test -v -p=1 -timeout=0 ./...
2729
- name: Set variables
@@ -36,5 +38,5 @@ jobs:
3638
project_path: "./cmd/glcon"
3739
binary_name: "glcon"
3840
ldflags: "-s -w -X main.VERSION=${{ env.VERSION }}"
39-
extra_files: README.md docs/ configs/ scripts/ schemaorg-current-https.jsonld
41+
extra_files: README.md docs/ configs/ scripts/ schemaorg-current-https.jsonld assets/
4042
# extra_files: LICENSE README.md

0 commit comments

Comments
 (0)