Skip to content

Commit

Permalink
remove generic build from oline
Browse files Browse the repository at this point in the history
  • Loading branch information
hard-nett committed Dec 28, 2024
1 parent e624141 commit 315707d
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,25 @@ jobs:
touch .env # Create dummy env file
cd ${{matrix.project}}
docker buildx bake -f build.yml --set node_1.tags=ghcr.io/${{ github.repository }}:${GITHUB_REF#refs/tags/}-${{matrix.project}}-${{matrix.version}}${{matrix.tag_suffix}} --push
build_generic:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 15
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
id: buildx
with:
install: true
- name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: |
touch .env # Create dummy env file
cd generic
docker buildx bake -f build.yml --set node_1.tags=ghcr.io/${{ github.repository }}:${GITHUB_REF#refs/tags/}-generic --push
# build_generic:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# max-parallel: 15
# steps:
# - uses: actions/checkout@v4
# - uses: docker/setup-buildx-action@v3
# id: buildx
# with:
# install: true
# - name: Login to DockerHub
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# - name: Build
# run: |
# touch .env # Create dummy env file
# cd generic
# docker buildx bake -f build.yml --set node_1.tags=ghcr.io/${{ github.repository }}:${GITHUB_REF#refs/tags/}-generic --push

0 comments on commit 315707d

Please sign in to comment.