Files
bash-tui-toolkit/.circleci/config.yml
renovate[bot] 7beb6bb550 chore(deps): update semantic-release orb to v6 (#20)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-08 09:48:20 +01:00

32 lines
710 B
YAML

version: "2.1"
orbs:
shellcheck: circleci/shellcheck@3.2.0
semantic-release: trustedshops-public/semantic-release@6.0.0
jobs:
semantic-release:
executor: semantic-release/default
steps:
- checkout
- setup_remote_docker
- semantic-release/install:
additional_packages: '@semantic-release/exec'
- run:
name: Install os dependencies
command: |
sudo apt-get update -y
sudo apt-get install -y gettext uuid-runtime
- semantic-release/execute
workflows:
main:
jobs:
- shellcheck/check:
name: shellcheck
dir: src
- semantic-release:
requires:
- shellcheck