Merge pull request #83 from orange-cloudfoundry/feature-same-fs-layer… #13
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: auto-release | |
on: | |
workflow_dispatch: # to manually force a release on ignore paths | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '.github/**' | |
- .gitignore | |
- CONTRIBUTING.md | |
- README.md | |
- renovate.json5 | |
- run-renovate-locally.bash | |
jobs: | |
build: | |
name: "ship it" | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Bump version | |
id: bump-version | |
uses: ietf-tools/semver-action@2415a9e79db34eb828a8dc1d20d4890725737227 # v1 | |
with: | |
token: ${{ github.token }} | |
branch: master | |
noVersionBumpBehavior: patch | |
majorList: major | |
- name: create bosh release | |
id: create-bosh-release | |
uses: orange-cloudfoundry/create-bosh-release-action@a2a9c1f8c74ecaf1e317140ac2cda5861eb25b7f # v1.0.4 | |
with: | |
target_branch: ${{github.ref_name}} | |
tag_name: ${{ steps.bump-version.outputs.next}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
AWS_BOSH_ACCES_KEY_ID: ${{ secrets.AWS_BOSH_ACCES_KEY_ID }} | |
AWS_BOSH_SECRET_ACCES_KEY: ${{ secrets.AWS_BOSH_SECRET_ACCES_KEY }} | |
# see https://github.com/ncipollo/release-action | |
- name: create github release | |
id: create-github-release | |
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 # v1.14.0 | |
with: | |
tag: ${{ steps.create-bosh-release.outputs.tagged_version }} | |
draft: false | |
allowUpdates: false # > indicates if we should update a release if it already exists. | |
generateReleaseNotes: true | |
artifacts: ./${{ steps.create-bosh-release.outputs.file }} | |
artifactContentType: application/zip | |
artifactErrorsFailBuild: true # > indicates if artifact read or upload errors should fail the build. |