Skip to content

Commit ce4c91d

Browse files
committed
Rename yml to yaml
1 parent 5c65e2d commit ce4c91d

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010

1111
jobs:
1212
release:
13-
uses: jeffersonlab/java-workflows/.github/workflows/gh-release.yml@v1
13+
uses: jeffersonlab/java-workflows/.github/workflows/gh-release.yaml@v1
1414
with:
1515
files: build/Hi
1616
secrets: inherit
1717

1818
docs_publish:
1919
needs:
2020
- release
21-
uses: jeffersonlab/java-workflows/.github/workflows/gh-pages-publish.yml@v1
21+
uses: jeffersonlab/java-workflows/.github/workflows/gh-pages-publish.yaml@v1
2222
with:
2323
semvertag: ${{ needs.release.outputs.semvertag }}
2424
secrets: inherit
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ permissions:
1616

1717
jobs:
1818
build:
19-
uses: jeffersonlab/java-workflows/.github/workflows/unit-ci.yml@v1
19+
uses: jeffersonlab/java-workflows/.github/workflows/unit-ci.yaml@v1

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ GitHub action Java workflows
33

44
## Reusable workflows
55

6-
| Name | Description |
7-
|----------------------|----------------------------------|
8-
| [gh-pages-publish.yml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/gh-pages-publish.yml) | Publish API docs to GitHub Pages |
9-
| [gh-release.yml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/gh-release.yml) | Create a GitHub Release |
10-
| [maven-publish.yml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/maven-publish.yml) | Publish an artifact on Maven Central |
11-
| [unit-ci.yml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/unit-ci.yml) | Build and run Unit tests |
6+
| Name | Description |
7+
|---------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
8+
| [gh-pages-publish.yaml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/gh-pages-publish.yaml) | Publish API docs to GitHub Pages |
9+
| [gh-release.yaml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/gh-release.yaml) | Create a GitHub Release |
10+
| [maven-publish.yaml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/maven-publish.yaml) | Publish an artifact on Maven Central |
11+
| [unit-ci.yaml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/unit-ci.yaml) | Build and run Unit tests |
1212

1313
## How to use
1414
This project uses it's own workflows in order to test them (the Java App/Lib is just a demo/example). Copy and paste one or more of the following files into your project `.github/workflows` directory and update parameters accordingly:
1515

16-
| Name | Description |
17-
|---------------------------------------------------------------------------------------------|----------------------------------|
18-
| [ci.yml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/ci.yml) | Continuous Integration of an App/Lib |
19-
| [cd.yml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/cd.yml) | Continuous Deployment of an App/Lib with GitHub release |
16+
| Name | Description |
17+
|-----------------------------------------------------------------------------------------------|---------------------------------------------------------|
18+
| [ci.yaml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/ci.yaml) | Continuous Integration of an App/Lib |
19+
| [cd.yaml](https://github.com/JeffersonLab/java-workflows/blob/main/.github/workflows/cd.yaml) | Continuous Deployment of an App/Lib with GitHub release |
2020

2121
The `ci` workflow invokes `unit-ci` to configure, build, and unit test. The `ci` workflow can be customized with docker commands to launch containers and run integration tests ([Java Example](https://github.com/JeffersonLab/myquery/blob/e47681393f9a7a900dc1f0a932b6271bfa6356ed/.github/workflows/ci.yml#L20-L44])).
2222

0 commit comments

Comments
 (0)