Skip to content

Commit 65da1ce

Browse files
committed
Automatic GitHub releases
1 parent 4f15a45 commit 65da1ce

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "create-release"
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
8+
jobs:
9+
create-release:
10+
name: "Create release for pushed tag"
11+
runs-on: "ubuntu-latest"
12+
permissions:
13+
contents: write
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: "ncipollo/release-action@v1.9.0"
17+
with:
18+
allowUpdates: true
19+
omitBodyDuringUpdate: true
20+
omitNameDuringUpdate: true
21+
bodyFile: .github/workflows/resources/releaseBody.md
22+
token: "${{ secrets.GITHUB_TOKEN }}"
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Overview
2+
3+
The [Interoperability Test Bed](https://joinup.ec.europa.eu/collection/interoperability-test-bed-repository/solution/interoperability-test-bed) is pleased to announce the availability of the latest release of its JSON validator.
4+
5+
# Usage
6+
7+
The primary means of using the validator is via Docker image, either directly to create a container, or as a base image for custom validator images. The release's image is published on the [Docker Hub](https://hub.docker.com/) as [isaitb/json-validator:latest](https://hub.docker.com/r/isaitb/json-validator).
8+
9+
Details on configuring and using the validator are provided in the [JSON validation guide](https://www.itb.ec.europa.eu/docs/guides/latest/validatingJSON/index.html), with additional details for on-premise installations in the [production installation guide](https://www.itb.ec.europa.eu/docs/guides/latest/installingValidatorProduction/index.html).
10+
11+
# Change Log
12+
13+
The list of changes included in each validator release can be consulted in the [JSON validator change log](https://www.itb.ec.europa.eu/docs/guides/latest/validatingJSON/index.html#change-history).

0 commit comments

Comments
 (0)