Merge pull request #3 from wannevancamp/cleanup #21
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 Image | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login into Github Container registry | |
| run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
| - name: Install Shopware-CLI | |
| uses: shopware/shopware-cli-action@v1 | |
| - name: Make image name small | |
| id: image | |
| run: | | |
| export "name=ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:latest" | |
| echo "image=${name,,}" >> ${GITHUB_OUTPUT} | |
| - name: Generate image | |
| run: docker build -t ${{ steps.image.outputs.image }} . | |
| - name: Build and push | |
| uses: docker/build-push-action@v5 | |
| with: | |
| push: true | |
| provenance: false | |
| tags: ${{ steps.image.outputs.image }} |