Skip to content

Commit

Permalink
don't build for s390x
Browse files Browse the repository at this point in the history
it takes a while and nobody really needs it
  • Loading branch information
pixelcmtd committed Feb 2, 2024
1 parent b6c08a7 commit ce911e4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Build and publish new containers
name: Test and publish new container

on:
push:
branches: [daddy, procens]

jobs:
docker:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -14,6 +14,15 @@ jobs:
node-version: lts/*
- run: npm ci
- run: npm run test
docker:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm ci
- run: npm run build
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
Expand All @@ -25,5 +34,5 @@ jobs:
with:
push: true
context: .
platforms: linux/amd64,linux/arm64,linux/arm,linux/ppc64le,linux/s390x
platforms: linux/amd64,linux/arm64,linux/arm,linux/ppc64le
tags: chrissx/kinkcheck.top:${{ github.ref_name }}
12 changes: 0 additions & 12 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit ce911e4

Please sign in to comment.