diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index 2ca5b33..0000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -FROM cgr.dev/chainguard/wolfi-base - -RUN <> /etc/sudoers -addgroup -g 33333 gitpod -adduser -u 33333 -G gitpod -h /home/gitpod -s /bin/bash -D gitpod -EOF - -USER gitpod - diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 43e3b68..0000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "image": "ghcr.io/friendsofshopware/shopware-cli-codespace:latest", - "containerUser": "gitpod", - "remoteUser": "gitpod", - "customizations": { - "vscode": { - "extensions": [ - "golang.go-nightly", - "github.vscode-github-actions", - "redhat.vscode-yaml", - "liuchao.go-struct-tag", - "redhat.vscode-yaml" - ] - } - } -} diff --git a/.github/workflows/codespace.yml b/.github/workflows/codespace.yml deleted file mode 100644 index 180033d..0000000 --- a/.github/workflows/codespace.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Codespaces - -on: - push: - branches: - - main - paths: - - .devcontainer/Dockerfile - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Login into Github Docker Registry - run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Build and push - uses: docker/build-push-action@v6 - with: - context: .devcontainer - push: true - platforms: linux/amd64,linux/arm64 - tags: "ghcr.io/friendsofshopware/shopware-cli-codespace" - provenance: false diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 491d37a..58d9d73 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,7 +6,6 @@ on: - "*" branches: - main - - fix-lint-hints paths: - '*.go' - '**/*.go'