diff --git a/.github/workflows/build-publish-beta.yml b/.github/workflows/build-publish-beta.yml index efe89bdd..905e2c62 100644 --- a/.github/workflows/build-publish-beta.yml +++ b/.github/workflows/build-publish-beta.yml @@ -12,7 +12,7 @@ jobs: DOCKER_IMAGE: lukasdotcom/bundesliga DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} - DOCKER_TARGET_PLATFORM: linux/arm64,linux/arm/v7,linux/amd64 + DOCKER_TARGET_PLATFORM: linux/arm64,linux/amd64 steps: - name: Checkout the code uses: actions/checkout@v1 diff --git a/.github/workflows/build-publish-release.yml b/.github/workflows/build-publish-release.yml index 9943f100..8961647a 100644 --- a/.github/workflows/build-publish-release.yml +++ b/.github/workflows/build-publish-release.yml @@ -12,7 +12,7 @@ jobs: DOCKER_IMAGE: lukasdotcom/bundesliga DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} - DOCKER_TARGET_PLATFORM: linux/arm64,linux/arm/v7,linux/amd64 + DOCKER_TARGET_PLATFORM: linux/arm64,linux/amd64 steps: - name: Checkout the code uses: actions/checkout@v1 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 057c830a..00000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,31 +0,0 @@ -# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - -name: Node.js CI - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - - runs-on: ubuntu-latest - env: - NODE_ENV: development - strategy: - matrix: - node-version: [16.x, 18.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - - steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm run build