Skip to content

Commit

Permalink
Merge pull request #7 from Homebrew/workflows-update
Browse files Browse the repository at this point in the history
workflows: update actions
  • Loading branch information
Bo98 committed Mar 28, 2024
2 parents 75a05ac + 56bfed5 commit 41ab58c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
include:
- container: debian7
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Build Docker image
run: docker build --tag ${{matrix.container}} .
Expand All @@ -41,7 +41,7 @@ jobs:
run: docker cp ${{github.sha}}:/home/linuxbrew/bootstrap-binaries .

- name: Upload binaries to GitHub Actions
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Bootstrap binaries
name: bootstrap-${{matrix.binary}}
path: bootstrap-binaries
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -20,13 +20,14 @@ jobs:
GH_TOKEN: ${{github.token}}
TAG: ${{github.event.inputs.tag}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Download binaries from GitHub Actions
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Bootstrap binaries
pattern: bootstrap-*
path: bootstrap-binaries
merge-multiple: true

- name: Push tag
run: gh release create "$TAG" --generate-notes
Expand Down

0 comments on commit 41ab58c

Please sign in to comment.