Skip to content

Commit

Permalink
Simplify GitHub action for dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
anothertobi committed May 2, 2024
1 parent 87b5f00 commit f8a1b2e
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,9 @@ jobs:
id: extracttag
run: |
echo "tag=$(awk -F: '/^FROM/ { print $2 }' Dockerfile)" >> $GITHUB_OUTPUT
build:
runs-on: ubuntu-latest
needs: imagetag
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
tags: ghcr.io/amazeeio/opensearch:pr${{ github.event.pull_request.number }}-${{ needs.imagetag.outputs.version }}
build-push:
runs-on: ubuntu-latest
needs: imagetag
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -54,5 +33,5 @@ jobs:
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: true
push: ${{ github.actor != 'dependabot[bot]' }} # don't push dependabot PRs
tags: ghcr.io/amazeeio/opensearch:pr${{ github.event.pull_request.number }}-${{ needs.imagetag.outputs.version }}

0 comments on commit f8a1b2e

Please sign in to comment.