Merge pull request #2920 from internetee/test-epp-upgrade #110
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 baseimage with gems | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "Gemfile" | |
| - "Gemfile.lock" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Login to container registry | |
| env: | |
| PASSWORD: ${{ secrets.GHCR }} | |
| run: | | |
| echo $PASSWORD | docker login ghcr.io -u eisbot --password-stdin | |
| - name: Build new image with gems | |
| run: | | |
| docker build --no-cache -t ghcr.io/internetee/registry:gems-latest -f Dockerfile.gems . | |
| docker push ghcr.io/internetee/registry:gems-latest | |