Update docker/setup-buildx-action action to v4 #309
Workflow file for this run
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 and test | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**/README.md' | |
| - '**/README_DEV.md' | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: browser-actions/setup-chrome@latest | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '>=1.26.0' | |
| # - name: Install dependencies | |
| # run: go get -u golang.org/x/lint/golint | |
| # - name: Run vet and lint | |
| # run: | | |
| # go vet . | |
| # golint -set_exit_status=1 . | |
| - run: go build | |
| #- run: go test -timeout 120s ./... | |
| - run: go test -race -coverprofile=coverage.out -covermode=atomic -timeout 120s ./... | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| publish-container: | |
| runs-on: ubuntu-latest | |
| needs: build-and-test | |
| if: github.ref == 'refs/heads/main' | |
| strategy: | |
| matrix: | |
| variant: [{dockerfile: Dockerfile, tagSuffix: ''}, {dockerfile: Dockerfile.unprivileged, tagSuffix: '-unprivileged'}, {dockerfile: Dockerfile.withoutPlayground, tagSuffix: '-without-playground'}] | |
| steps: | |
| - name: Set version to env | |
| run: | | |
| echo "VERSION=$(date +'%Y.%-m.%-d.%-H%M')" >> $GITHUB_ENV | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| # - run: git submodule update --init | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Login to Github Packages | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Build and push docker image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| platforms: linux/amd64, linux/arm64 | |
| file: ./${{ matrix.variant.dockerfile }} | |
| context: ./ | |
| tags: | | |
| lucasgaitzsch/pdf-turtle:latest${{ matrix.variant.tagSuffix }} | |
| lucasgaitzsch/pdf-turtle:v${{ env.VERSION }}${{ matrix.variant.tagSuffix }} | |
| ghcr.io/${{ github.repository }}:latest${{ matrix.variant.tagSuffix }} | |
| ghcr.io/${{ github.repository }}:v${{ env.VERSION }}${{ matrix.variant.tagSuffix }} | |
| push: true | |
| - name: Docker Hub Description | |
| uses: peter-evans/dockerhub-description@v5 | |
| env: | |
| DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
| DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| DOCKERHUB_REPOSITORY: lucasgaitzsch/pdf-turtle | |
| short-description: ${{ github.event.repository.description }} |