--- kind: pipeline name: test platform: os: linux arch: amd64 steps: - name: markdownlint image: thegeeklab/markdownlint-cli commands: - markdownlint 'README.md' trigger: ref: - refs/heads/main - refs/pull/** - refs/tags/** --- kind: pipeline name: build-container platform: os: linux arch: amd64 steps: - name: binary image: clux/muslrust:nightly-2020-10-02 commands: - make build environment: BUILD_VERSION: ${DRONE_TAG%-*} - name: dryrun image: thegeeklab/drone-docker-buildx:20 settings: dockerfile: Dockerfile dry_run: true password: from_secret: docker_password repo: thegeeklab/${DRONE_REPO_NAME} username: from_secret: docker_username when: ref: - refs/pull/** depends_on: - binary - name: tags image: thegeeklab/docker-autotag environment: DOCKER_AUTOTAG_FORCE_LATEST: True DOCKER_AUTOTAG_IGNORE_PRERELEASE: True DOCKER_AUTOTAG_OUTPUT_FILE: .tags DOCKER_AUTOTAG_VERSION: ${DRONE_TAG} when: ref: - refs/heads/main - refs/tags/** depends_on: - dryrun - name: changelog image: thegeeklab/git-chglog commands: - git fetch -tq - git-chglog --no-color --no-emoji ${DRONE_TAG:---next-tag unreleased unreleased} - git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased} depends_on: - tags - name: publish-dockerhub image: thegeeklab/drone-docker-buildx:20 settings: dockerfile: Dockerfile password: from_secret: docker_password repo: thegeeklab/${DRONE_REPO_NAME} username: from_secret: docker_username when: ref: - refs/heads/main - refs/tags/** depends_on: - changelog - name: publish-quay image: thegeeklab/drone-docker-buildx:20 settings: dockerfile: Dockerfile password: from_secret: quay_password registry: quay.io repo: quay.io/thegeeklab/${DRONE_REPO_NAME} username: from_secret: quay_username when: ref: - refs/heads/main - refs/tags/** depends_on: - changelog - name: publish-gitea image: plugins/gitea-release settings: api_key: from_secret: gitea_token base_url: https://gitea.rknet.org note: CHANGELOG.md overwrite: true title: ${DRONE_TAG} when: ref: - refs/tags/** depends_on: - publish-dockerhub - publish-quay trigger: ref: - refs/heads/main - refs/pull/** - refs/tags/** depends_on: - test --- kind: pipeline name: notifications platform: os: linux arch: amd64 steps: - name: pushrm-dockerhub pull: always image: chko/docker-pushrm:1 environment: DOCKER_PASS: from_secret: docker_password DOCKER_USER: from_secret: docker_username PUSHRM_FILE: README.md PUSHRM_SHORT: Custom image for the BitwardenRS LDAP connector PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME} when: status: - success - name: pushrm-quay pull: always image: chko/docker-pushrm:1 environment: APIKEY__QUAY_IO: from_secret: quay_token PUSHRM_FILE: README.md PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME} when: status: - success - name: matrix image: plugins/matrix settings: homeserver: from_secret: matrix_homeserver password: from_secret: matrix_password roomid: from_secret: matrix_roomid template: "Status: **{{ build.status }}**
Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}
Message: {{ build.message }}" username: from_secret: matrix_username when: status: - success - failure trigger: ref: - refs/heads/main - refs/tags/** status: - success - failure depends_on: - build-container --- kind: signature hmac: e03145d27db00972b4bb48d3893c13c5c6998ed72a2243303dbadf11fc442d61 ...