no-release: Fix id_token version but skip the release process #113
Workflow file for this run
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: Erlang CI | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
name: OTP ${{matrix.otp}} | |
strategy: | |
matrix: | |
otp: ["24.0", "25.0"] | |
steps: | |
- uses: actions/[email protected] | |
- uses: erlef/[email protected] | |
with: | |
otp-version: ${{ matrix.otp }} | |
rebar3-version: '3.16.1' | |
- name: Compile | |
run: make | |
- name: Run xref | |
run: make xref | |
- name: Run elvis | |
run: make elvis_rock | |
- name: Run dialyzer | |
run: make dialyze | |
- name: Run proper tests | |
run: make proper | |
release: | |
if: github.ref == 'refs/heads/master' && startsWith(github.event.head_commit.message, 'no-release:') == false | |
needs: build_and_test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Bump version and push tag | |
id: tag_version | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create a GitHub release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.tag_version.outputs.new_tag }} | |
release_name: Release ${{ steps.tag_version.outputs.new_tag }} | |
body: ${{ steps.tag_version.outputs.changelog }} |