Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Test fetch
run: bazel fetch //...
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Test
run: bazel test //...
Expand All @@ -41,15 +41,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Create release archive and notes
# Set by GH actions, see
# https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
run: ./ci/package.sh "${{ github.ref_name }}"

- name: Archive release artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release
path: release/*
Expand All @@ -61,7 +61,7 @@ jobs:
needs: pkg
steps:
- name: Download release artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: release

Expand Down