Bump react-transition-group and @types/react-transition-group in /web #1306
This file contains hidden or 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: Build PR image and upload artifact | |
| on: | |
| pull_request: | |
| types: [labeled] | |
| env: | |
| WF_ORG: netobserv | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-pr-image: | |
| if: ${{ github.event.label.name == 'ok-to-test' }} | |
| name: Build PR image and upload artifact | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install make | |
| run: sudo apt -y install make | |
| - name: build and save image | |
| run: OCI_BUILD_OPTS="--label quay.expires-after=2w" IMAGE_ORG=${{ env.WF_ORG }} VERSION=tmp CLEAN_BUILD=1 make tar-image | |
| - name: build and save standalone image | |
| run: OCI_BUILD_OPTS="--label quay.expires-after=2w" IMAGE_ORG=${{ env.WF_ORG }} VERSION=tmp CLEAN_BUILD=1 STANDALONE=true make tar-image | |
| - name: upload artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: pr | |
| path: out/ |