renamed pipeline name, added CC env, installing and enabling the loca… #13
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: Libdbc Release | |
on: | |
workflow_dispatch: | |
inputs: | |
major: | |
required: true | |
type: string | |
minor: | |
required: true | |
type: string | |
patch: | |
required: true | |
type: string | |
jobs: | |
create_release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout the code" | |
uses: actions/checkout@v3 | |
- name: "Run tests as a pre check" | |
uses: .github/workflows/tests.yml | |