Skip to content

Commit

Permalink
Preapre for GitHub release
Browse files Browse the repository at this point in the history
  • Loading branch information
fri committed Sep 13, 2024
1 parent 76427fa commit 4481774
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build

on: workflow_dispatch
on: [workflow_dispatch, workflow_call]

jobs:
build:
Expand Down Expand Up @@ -47,14 +47,3 @@ jobs:
name: fcd-${{ matrix.target }}
path: fcd-${{ matrix.target }}.tar.gz
if-no-files-found: error

download:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Display structure of downloaded files
run: ls -R
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release

on: workflow_dispatch

jobs:
call-build:
uses: ./build.yml

download:
needs: call-build
runs-on: ubuntu-latest
steps:
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Display structure of downloaded files
run: ls -R

0 comments on commit 4481774

Please sign in to comment.