using log git hash for release name to better integrate with build tools #5
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: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
name: Erlang ${{matrix.otp}} / rebar ${{matrix.rebar3}} | |
strategy: | |
matrix: | |
otp: ['24.3.4.8'] | |
rebar3: ['3.18'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: feature/ansible_connection | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
rebar3-version: ${{matrix.rebar3}} | |
- uses: actions/cache@v4 | |
env: | |
cache-name: rebar3 | |
with: | |
path: | | |
~/.cache/rebar3 | |
_build | |
key: ci-${{runner.os}}-${{env.cache-name}}-otp_${{matrix.otp}}-rebar_${{matrix.rebar3}}-${{hashFiles('rebar.lock')}} | |
restore-keys: | | |
ci-${{runner.os}}-${{env.cache-name}}-otp_${{matrix.otp}}-rebar_${{matrix.rebar3}} | |
ci-${{runner.os}}-${{env.cache-name}}-otp_${{matrix.otp}} | |
- name: Compile | |
run: rebar3 do clean, compile as public | |
- name: Release | |
run: rebar3 do tar as public | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GH_TOKEN }} | |
file: _build/default/rel/dog_trainer/dog_trainer-${GITHUB_SHA}.tar.gz | |
asset_name: dog_trainer_release | |
tag: ${{ github.ref }} | |
overwrite: true | |
body: "dog_trainer Erlang release" |