Skip to content

Commit

Permalink
remove buildx; reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
zsteinkamp committed Mar 26, 2024
1 parent e49d2d2 commit fa70082
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ jobs:
packages: write
#
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Need to check out repo
- name: Checkout
uses: actions/checkout@v4

# Generate the default config (port 3333, admin=true)
- run: bin/gen-config

# Uses the `docker/login-action` action to log in to the Container
# registry registry using the account and password that will publish the
Expand All @@ -41,13 +45,6 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# Need to check out repo
- name: Checkout
uses: actions/checkout@v4

# Generate the default config (port 3333, admin=true)
- run: bin/gen-config

# This step uses
# [docker/metadata-action](https://github.com/docker/metadata-action#about)
# to extract tags and labels that will be applied to the specified image.
Expand Down

0 comments on commit fa70082

Please sign in to comment.