Skip to content

Commit

Permalink
Merge branch 'dev' into mm-dev--api
Browse files Browse the repository at this point in the history
  • Loading branch information
fils authored Mar 2, 2023
2 parents 30d8789 + 14434be commit b443475
Show file tree
Hide file tree
Showing 30 changed files with 85,231 additions and 281 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/docker-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
- name: checkout code
uses: actions/checkout@v2
- name: donwload schema
run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
- name: donwload schema
run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld

# - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
- id: binary
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
- name: checkout code
uses: actions/checkout@v2
- name: donwload schema
run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
- name: donwload schema
run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld

# - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
- id: binary
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release_gleaner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: donwload schema
run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
# - name: Run tests
run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
- name: donwload schema
run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld

# - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
- uses: wangyoucao577/[email protected]
with:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release_gleaner_v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: donwload schema
run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
- name: donwload schema
run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld
# - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
- name: Set variables
Expand All @@ -36,5 +38,5 @@ jobs:
project_path: "./cmd/glcon"
binary_name: "glcon"
ldflags: "-s -w -X main.VERSION=${{ env.VERSION }}"
extra_files: README.md docs/ configs/ scripts/ schemaorg-current-https.jsonld
extra_files: README.md docs/ configs/ scripts/ schemaorg-current-https.jsonld assets/
# extra_files: LICENSE README.md
Loading

0 comments on commit b443475

Please sign in to comment.