Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workflows: update actions #7

Merged
merged 1 commit into from Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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