Commit 699708a1 authored by semantic-release-bot's avatar semantic-release-bot
Browse files
parent 56ee9b32
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
# Just CI templates v6.28.4
# Just CI templates v6.29.0

### Maintainers

@@ -83,7 +83,7 @@ is an example `.gitlab-ci.yml` importing the python template:
```yaml
---
include:
  - remote: https://jobs.just-ci.dev/v6.28.4/templates/python.yml
  - remote: https://jobs.just-ci.dev/v6.29.0/templates/python.yml

variables:
  PYVERSION: 3.9-slim
@@ -111,7 +111,7 @@ you want you can always disable specific jobs with custom rules.
```yaml
---
include:
  - remote: https://jobs.just-ci.dev/v6.28.4/templates/python.yml
  - remote: https://jobs.just-ci.dev/v6.29.0/templates/python.yml

variables:
  PYVERSION: 3.9-slim
+4 −4
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ monorepo_root
include:
  - project: just-ci/templates
    file: templates/container.yml
    ref: v6.28.4
    ref: v6.29.0

image:build:subdir_b:
  extends: .image:build
@@ -66,7 +66,7 @@ subsequent `Dockerfile`, you need to create jobs which extend `.kaniko` and
include:
  - project: just-ci/templates
    file: templates/container.yml
    ref: v6.28.4
    ref: v6.29.0

variables:
  IMAGE_CONTEXT: subdir_a
@@ -102,7 +102,7 @@ builder template. For example:
include:
  - project: just-ci/templates
    file: templates/container.yml
    ref: v6.28.4
    ref: v6.29.0

.image:build:
  extends: .buildah # All build jobs will now use buildah
@@ -131,7 +131,7 @@ arm64.
include:
  - project: just-ci/templates
    file: templates/container.yml
    ref: v6.28.4
    ref: v6.29.0

.image:build:
  extends: .docker
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ include:
update:check:ci-templates:
  extends: .update-check
  variables:
    UPDATE_CHECK_CURRENT_VERSION: v6.28.4
    UPDATE_CHECK_CURRENT_VERSION: v6.29.0
    UPDATE_CHECK_REPOSITORY: https://gitlab.com/just-ci/templates.git
    UPDATE_CHECK_NAME: Just CI templates

+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ find-next-release:
  script:
    - !reference [".release:install", script]
    - wget -O .releaserc
      https://gitlab.com/just-ci/templates/-/raw/v6.28.4/project-automation/release/find-next-release.json
      https://gitlab.com/just-ci/templates/-/raw/v6.29.0/project-automation/release/find-next-release.json
    - semantic-release --dry-run --no-ci
    - echo "TBUMP_NEXT_VERSION=$(cat .VERSION 2>/dev/null || echo "[!] No new
      release" 1>&2)" > TBUMP_NEXT_VERSION.env
+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ to automatically check if the included template has been updated externally.

```yaml
include:
  - remote: https://jobs.just-ci.dev/v6.28.4/project-automation/update-check.yml
  - remote: https://jobs.just-ci.dev/v6.29.0/project-automation/update-check.yml

update-check:your-repo-name:
  extends: .update-check
@@ -38,7 +38,7 @@ To ensure versions are pinned using variables, you can extend the

```yaml
include:
  - remote: https://jobs.just-ci.dev/v6.28.4/project-automation/version-pin-check.yml
  - remote: https://jobs.just-ci.dev/v6.29.0/project-automation/version-pin-check.yml

PIN-VERSION:PYVERSION:
  extends: .version-pin-check
Loading