Skip to content

Commit

Permalink
github: consolidate single workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Sep 21, 2023
1 parent 4a727a6 commit 1fd28d8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 31 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/fixtures.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,21 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.name }}
path: ${{ matrix.name }}.tar.gz
path: ${{ matrix.name }}.tar.gz
release:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
if: startsWith(github.ref, 'refs/tags/')
with:
path: .
- name: Draft Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: './**'
draft: true
generate_release_notes: true
fail_on_unmatched_files: true
30 changes: 0 additions & 30 deletions .github/workflows/tags.yaml

This file was deleted.

0 comments on commit 1fd28d8

Please sign in to comment.