update deb: debhelper (>= 9.20160709) #43
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: Releases Source | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| workflow_dispatch: | |
| jobs: | |
| Build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install dependent | |
| run: | | |
| make dependent | |
| - name: Config Github | |
| run: | | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "GitHub" | |
| - name: Checkout | |
| run: | | |
| make $(basename ${GITHUB_REF}) | |
| - name: Release source | |
| env: | |
| SOURCE: https://github.com/klts-io/kubernetes | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| run: | | |
| make public-source |