From 4a3c72282303210c781f408895b1fd9e66a5ebdc Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 8 Apr 2024 20:36:08 +0100 Subject: [PATCH] [devkits] remove common --- .github/workflows/devkit.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/devkit.yml diff --git a/.github/workflows/devkit.yml b/.github/workflows/devkit.yml deleted file mode 100644 index fd1013d..0000000 --- a/.github/workflows/devkit.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Devkit - -on: - workflow_call: - inputs: - lang: - required: true - type: string - version: - required: true - type: string - -jobs: - build: - name: Build Container - runs-on: ubuntu-22.04 - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Publish - uses: elgohr/Publish-Docker-Github-Action@main - with: - name: shish2k/rosettaboy-devkit-${{ inputs.lang }} - dockerfile: .docker/${{ inputs.lang }}.dockerfile - buildoptions: "--build-arg VERSION=${{ inputs.version }}" - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - tags: ${{ inputs.version }} - platforms: linux/amd64,linux/arm64