Change BASE_IMAGE to Fedora 39 #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Tomcat JSS | |
on: | |
push: | |
branches: | |
- v8.4 | |
env: | |
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || github.repository_owner }} | |
jobs: | |
init: | |
name: Initialization | |
uses: ./.github/workflows/init.yml | |
secrets: inherit | |
if: vars.REGISTRY != '' | |
publish-maven: | |
name: Publishing Maven artifacts | |
needs: init | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Check settings.xml | |
run: | | |
cat ~/.m2/settings.xml | |
- name: Update pom.xml | |
run: | | |
sed -i \ | |
-e "s/OWNER/$NAMESPACE/g" \ | |
-e "s/REPOSITORY/tomcatjss/g" \ | |
pom.xml | |
cat pom.xml | |
- name: Publish Maven artifacts | |
run: | | |
mvn \ | |
--batch-mode \ | |
--update-snapshots \ | |
deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
wait-for-images: | |
name: Waiting for container images | |
needs: init | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait for container images | |
uses: lewagon/[email protected] | |
with: | |
ref: ${{ github.ref }} | |
check-name: 'Building Tomcat JSS' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
wait-interval: 30 | |
publish-images: | |
name: Publishing container images | |
needs: [init, wait-for-images] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Log in to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ vars.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
if: vars.REGISTRY == 'ghcr.io' | |
- name: Log in to other container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ vars.REGISTRY }} | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
if: vars.REGISTRY != 'ghcr.io' | |
- name: Retrieve tomcatjss-dist image | |
uses: actions/cache@v3 | |
with: | |
key: tomcatjss-dist-${{ github.sha }} | |
path: tomcatjss-dist.tar | |
- name: Publish tomcatjss-dist image | |
run: | | |
docker load --input tomcatjss-dist.tar | |
docker tag tomcatjss-dist ${{ vars.REGISTRY }}/$NAMESPACE/tomcatjss-dist:8.4 | |
docker push ${{ vars.REGISTRY }}/$NAMESPACE/tomcatjss-dist:8.4 |