From 43036e718c030aaee6834e57cf86e2d8a4c6e7ef Mon Sep 17 00:00:00 2001 From: slominskir Date: Thu, 16 May 2024 15:06:08 -0400 Subject: [PATCH] Use yaml instead of yml --- .github/workflows/{cd.yml => cd.yaml} | 0 .github/workflows/{ci.yml => ci.yaml} | 0 .github/workflows/{dd.yml => dd.yaml} | 2 +- README.md | 6 +++--- 4 files changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{cd.yml => cd.yaml} (100%) rename .github/workflows/{ci.yml => ci.yaml} (100%) rename .github/workflows/{dd.yml => dd.yaml} (86%) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yaml similarity index 100% rename from .github/workflows/cd.yml rename to .github/workflows/cd.yaml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yaml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/ci.yaml diff --git a/.github/workflows/dd.yml b/.github/workflows/dd.yaml similarity index 86% rename from .github/workflows/dd.yml rename to .github/workflows/dd.yaml index 2ff08ff..50ec079 100644 --- a/.github/workflows/dd.yml +++ b/.github/workflows/dd.yaml @@ -6,7 +6,7 @@ on: - main paths: - README.md - - .github/workflows/dd.yml + - .github/workflows/dd.yaml jobs: description: uses: jeffersonlab/container-workflows/.github/workflows/docker-description.yaml@v2 diff --git a/README.md b/README.md index 62da30b..92dc2f0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# wildfly [![CI](https://github.com/JeffersonLab/wildfly/actions/workflows/ci.yml/badge.svg)](https://github.com/JeffersonLab/wildfly/actions/workflows/ci.yml) [![Docker (demo)](https://img.shields.io/docker/v/jeffersonlab/wildfly?sort=semver&label=DockerHub)](https://hub.docker.com/r/jeffersonlab/wildfly) +# wildfly [![CI](https://github.com/JeffersonLab/wildfly/actions/workflows/ci.yaml/badge.svg)](https://github.com/JeffersonLab/wildfly/actions/workflows/ci.yaml) [![Docker (demo)](https://img.shields.io/docker/v/jeffersonlab/wildfly?sort=semver&label=DockerHub)](https://hub.docker.com/r/jeffersonlab/wildfly) Configurable [Wildfly](https://www.wildfly.org/) base Docker image and bash setup scripts. --- @@ -70,7 +70,7 @@ Must be executed once per app installed in Wildfly. **Note**: Runtime Overridable parameters only make sense for Wildfly instances used for a single app (such as in a Container). Providing runtime overrides to a multi-app configuration would overwrite all app configs of the same name. See https://github.com/JeffersonLab/wildfly/blob/86df35a1357b5ad863ecc53be94676bf96ef8489/scripts/app-setup.sh#L69 -**Note**: As an alternative to the bash scripts The docker image configures Wildfly for use in the compose environment and that's a good starting point to copy from. Outside a compose environment you may need to tweak the standalone.xml configuration to use different host names and ports (For example Oracle and Keycloak host names would need to be updated to localhost:1521 and localhost:8081 respectively when using the deps.yml and running Wildfly outside the compose network): +**Note**: As an alternative to the bash scripts The docker image configures Wildfly for use in the compose environment and that's a good starting point to copy from. Outside a compose environment you may need to tweak the standalone.xml configuration to use different host names and ports (For example Oracle and Keycloak host names would need to be updated to localhost:1521 and localhost:8081 respectively when using the deps.yaml and running Wildfly outside the compose network): ``` docker compose up @@ -99,6 +99,6 @@ These environment variables are Docker specific and are used by the [docker-entr ## Release 1. Bump the version number in the VERSION file and commit and push to GitHub (using [Semantic Versioning](https://semver.org/)). -2. The [CD](https://github.com/JeffersonLab/wildfly/blob/main/.github/workflows/cd.yml) GitHub Action should run automatically invoking: +2. The [CD](https://github.com/JeffersonLab/wildfly/blob/main/.github/workflows/cd.yaml) GitHub Action should run automatically invoking: - The [Create release](https://github.com/JeffersonLab/container-workflows/blob/main/.github/workflows/gh-release.yaml) GitHub Action to tag the source and create release notes summarizing any pull requests. Edit the release notes to add any missing details. - The [Publish docker image](https://github.com/JeffersonLab/container-workflows/blob/main/.github/workflows/docker-publish.yaml) GitHub Action to create a new demo Docker image.