Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Upload build artifacts
if: github.ref == 'refs/heads/next'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build
path: ./build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ jobs:
run: npm run cy:ci

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build
path: ./build

- name: Upload npm artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: "swagger-editor-next.tgz"
path: ./swagger-editor-*.tgz
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
run: |
echo ${{ steps.semantic.outputs.new_release_version }} > released-version.txt
- name: Upload released version
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: released-version
path: ./released-version.txt
Expand Down
Loading