Lines Matching +full:runs +full:- +full:on
3 on:
6 - 'v*'
10 runs-on: ubuntu-latest
12 - name: Checkout code
15 fetch-depth: 0
17 - name: Set Tag as Filename
21 - name: Create ZIP file
22 run: zip -r "${{ env.TAG_NAME }}.zip" .
24 - name: Generate Changelog
28 PREV_TAG=$(git describe --tags --abbrev=0 HEAD^)
31 echo -e "# Changelog\n" > CHANGELOG.md
34 git log ${PREV_TAG}..HEAD --pretty=format:"* %s" >> CHANGELOG.md
37 echo -e "\n\n# Contributors\n" >> CHANGELOG.md
38 git log ${PREV_TAG}..HEAD --format='%aN' | sort -u | awk '{print "* " $0}' >> CHANGELOG.md
40 - name: Create Release
42 uses: actions/create-release@v1
52 - name: Upload Asset
53 uses: actions/upload-release-asset@v1