release: Bump version to v1.0.15 (#574) #88
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
# This action triggers a GitLab CI job. The job first builds the project and then runs the tests. | |
# If the latest merged commit contains the keyword "release:", the job will also try to create a new release on GitHub. | |
# The release will be created with the tag "vX.Y.Z", where X.Y.Z is the version number of the `clients/vault` package. | |
name: Test, Build and Release | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: trigger job | |
uses: appleboy/gitlab-ci-action@master | |
with: | |
host: "https://gitlab.com" | |
token: ${{ secrets.GITLABAPI }} | |
project_id: 51267165 | |
debug: true | |
ref: development |