Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sts 189 update frontend #190

Merged
merged 24 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
a138ea4
STS-189 update to angular10
max402 Apr 9, 2024
03472f7
STS-189 update to angular11
max402 Apr 9, 2024
7596553
STS-189 update to angular12
max402 Apr 9, 2024
9c67d95
STS-189 update to angular13
max402 Apr 9, 2024
12dc44c
STS-189 update to angular14
max402 Apr 9, 2024
75f9525
STS-189 update to angular15
max402 Apr 9, 2024
0fce84d
STS-189 update to angular16
max402 Apr 9, 2024
94c4ca9
STS-189 update to angular17
max402 Apr 9, 2024
0caa48d
STS-189 npm run build fixes
max402 Apr 9, 2024
cb05bec
STS-189 update keycloak
max402 Apr 9, 2024
88b33e4
STS-189 update frontend dependencies
max402 Apr 22, 2024
908a3e5
STS-189 remove travis configs, build client using github actions
max402 Jun 4, 2024
bbd1bed
STS-190 Angular 18, fix custom storage provider
max402 Jul 2, 2024
bc34b81
update version in package-lock
max402 Jul 2, 2024
ba5771a
STS-189 separate github workflow for building frontend
max402 Jul 3, 2024
486949a
STS-189 test build and push frontend image
max402 Jul 3, 2024
307ce30
STS-189 fix "no main manifest attribute, in /opt/sts-secret-server.jar"
max402 Jul 4, 2024
c2fc011
STS-189 fix "no main manifest attribute"
max402 Jul 4, 2024
61c2e90
openshift can't find image. try new tag
max402 Jul 4, 2024
d698fab
disable provenance in docker images
max402 Jul 5, 2024
13c0144
STS-189 fixes in keycloak-storage-provider
max402 Jul 8, 2024
a096508
STS-189 fix interaction between services (correct urls and ports)
max402 Jul 8, 2024
eaf99ba
STS-189 update readme and ports in yaml
max402 Jul 12, 2024
5308212
STS-189 unify moped.json, set login url during docker-compose up
max402 Jul 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
STS-189 test build and push frontend image
  • Loading branch information
max402 committed Jul 3, 2024
commit 486949a76097b1d0ff969155cbc93248324944c4
12 changes: 10 additions & 2 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,20 @@ jobs:
with:
name: artifacts

- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: sts-client-example

# TODO delete this step after successful testing
- name: Display structure of downloaded files
run: ls -R

- name: Get the tag name
run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
# temporarily
# run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
run: echo "TAG=v1.1.28" >> $GITHUB_ENV

- name: Build and push 'sts-example' docker image
uses: docker/build-push-action@v6
Expand Down Expand Up @@ -74,7 +82,7 @@ jobs:
- name: Build and push 'keycloak-sts-adapter' docker image
uses: docker/build-push-action@v6
with:
context: ./keycloak-sts-adapter
context: ./keycloak-storage-provider
platforms: linux/amd64,linux/arm64
push: true
tags: |
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
name: dist
path: |
${{ github.workspace }}/**/dist
${{ github.workspace }}/sts-client-example/dist
${{ github.workspace }}/sts-client-example/docker/create_env.json.sh
overwrite: false
if-no-files-found: error
18 changes: 17 additions & 1 deletion .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ jobs:
- name: Step 3 - Build & Test
run: mvn clean verify -ntp

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
${{ github.workspace }}/**/*.jar
${{ github.workspace }}/**/Dockerfile
overwrite: false
if-no-files-found: error

- name: Step 4 - Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
Expand All @@ -31,4 +41,10 @@ jobs:

build-frontend:
uses: ./.github/workflows/frontend.yml
secrets: inherit
secrets: inherit

# temporarily
dockerhub:
needs: [ build-java, build-frontend ]
uses: ./.github/workflows/dockerhub.yml
secrets: inherit