Skip to content

Commit

Permalink
Merge pull request #232
Browse files Browse the repository at this point in the history
* skip CodeQL on release; generate changelog and upload binaries
  • Loading branch information
alexei-led authored Jan 10, 2023
1 parent 0f5ba80 commit 52a4302
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: "Code Scan"

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ jobs:
apk --update add ca-certificates tzdata make git bash
make release
- uses: actions/upload-artifact@v3
with:
name: pumba-binaries
path: .bin/*


create-release:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
name: release
Expand All @@ -51,6 +57,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/download-artifact@v3
id: download
with:
name: 'pumba-binaries'
path: .bin/

- name: release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 52a4302

Please sign in to comment.