Fix Github Actions workflow #31
Workflow file for this run
This file contains hidden or 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 Go Binary | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: sudo apt install golang curl jq git | |
| - run: git clone https://github.com/verdigado/pfa-ldap-auth.git | |
| - run: bash -c "cd pfa-ldap-auth; git checkout ${{ github.ref }}; bash .github/workflows/release.sh" |