chore: fix wrapper, image name #92
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push workflow | |
on: push | |
jobs: | |
devcontainer-cache-build: | |
uses: rcwbr/devcontainer-cache-build/.github/workflows/[email protected] | |
permissions: | |
packages: write | |
release-it-workflow: | |
uses: rcwbr/release-it-gh-workflow/.github/workflows/[email protected] | |
with: | |
app-id: 1050683 # dockerfile-partials release-it app | |
app-environment: Repo release | |
# Use the file bumper release-it image | |
release-it-image: ghcr.io/rcwbr/release-it-docker-file-bumper:0.7.0 | |
secrets: | |
app-secret: ${{ secrets.RELEASE_IT_GITHUB_APP_KEY }} # Secret belonging to the Repo release environment | |
pre-commit: | |
name: pre-commit | |
runs-on: ubuntu-24.04 | |
# needs: devcontainer-cache-build | |
# TODO revert | |
container: | |
# image: ${{ needs.devcontainer-cache-build.outputs.devcontainer-cache-image-ref }} | |
image: ghcr.io/rcwbr/dockerfile-partials-devcontainer-pre-commit:6-apply-pre-commit-with-hadolint # TODO revert | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: pre-commit | |
run: | | |
pwd | |
ls -la | |
which pre-commit | |
cat /usr/local/bin/pre-commit | |
ls -la /opt/devcontainers/pre-commit/ | |
env | |
git config --global --add safe.directory $GITHUB_WORKSPACE | |
git status | |
pre-commit run --verbose --show-diff-on-failure --color=always --all-files | |
dive-efficiency: | |
name: Dive Docker image space efficiency analysis | |
runs-on: ubuntu-24.04 | |
permissions: | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: GHCR Login | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build all-layers image | |
env: | |
DEVCONTAINER_DEFINITION_TYPE: bake | |
DEVCONTAINER_IMAGE: dockerfile-partials-all-layers | |
DEVCONTAINER_PUSH_IMAGE: false | |
DEVCONTAINER_REGISTRY: ghcr.io/rcwbr | |
DEVCONTAINER_CACHE_BUILD_OVERRIDE_USER: codespace | |
DEVCONTAINER_CACHE_BUILD_OVERRIDE_UID: 1000 | |
DEVCONTAINER_CACHE_BUILD_OVERRIDE_USER_GID: 1000 | |
run: | | |
devcontainer_definition_files_arr=( | |
devcontainer-bake.hcl | |
docker-client/devcontainer-bake.hcl | |
useradd/devcontainer-bake.hcl | |
pre-commit/devcontainer-bake.hcl | |
.github/workflows/all-layers-image.hcl | |
) | |
DEVCONTAINER_DEFINITION_FILES="${devcontainer_definition_files_arr[*]}" | |
export DEVCONTAINER_DEFINITION_FILES | |
curl https://raw.githubusercontent.com/rcwbr/devcontainer-cache-build/0.3.0/devcontainer-cache-build-initialize | bash | |
- name: Dive analyze | |
run: | | |
docker run \ | |
--rm \ | |
-e CI=true \ | |
-v $(pwd)/.dive-ci:/etc/.dive-ci \ | |
-v /var/run/docker.sock:/var/run/docker.sock \ | |
wagoodman/dive:v0.12.0 \ | |
--ci-config /etc/.dive-ci dockerfile-partials-all-layers |