Skip to content

Commit

Permalink
switch to external release github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mmichaelb committed Jan 18, 2021
1 parent 78856df commit 3a2cf62
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 26 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,26 @@ jobs:
with:
name: BuildArtifact
path: ./bin/website-cookie-analyzer*
release:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
needs: build
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Download Build artifacts
uses: actions/download-artifact@v2
with:
name: BuildArtifact
path: ./bin/
- name: Release
uses: softprops/action-gh-release@v1
with:
draft: false
prerelease: false
files: ./bin/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26 changes: 0 additions & 26 deletions .github/workflows/release.yml

This file was deleted.

0 comments on commit 3a2cf62

Please sign in to comment.