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
4 changes: 2 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: subosito/flutter-action@v2

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Prepare for build
run: |
Expand All @@ -57,7 +57,7 @@ jobs:
# ---------------------------------- Upload ---------------------------- #

- name: Upload artifacts to workflow
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: linux-artifacts
path: output/*
6 changes: 3 additions & 3 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: subosito/flutter-action@v2

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Prepare for build
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
# ---------------------------------- Upload ---------------------------- #

- name: Upload Windows Store MSIX artifact to workflow
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: windows-store-artifact
path: output/*.msix
Expand All @@ -60,7 +60,7 @@ jobs:
run: rm output/*.msix

- name: Upload artifacts to workflow
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: windows-artifacts
path: output/*
4 changes: 2 additions & 2 deletions .github/workflows/flatpak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
ref: main
path: code
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
run: sleep 60

- name: Checkout flathub repository
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
repository: flathub/${{ env.project-id }}
path: flathub
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,20 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts

- name: Create Development Release & Upload artifacts
uses: marvinpinto/action-automatic-releases@v1.2.1
uses: softprops/action-gh-release@v3
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
token: "${{ secrets.GITHUB_TOKEN }}"
tag_name: "latest"
prerelease: true
title: "Development Build"
name: "Development Build"
files: |
${{ github.workspace }}/artifacts/linux-artifacts/*
${{ github.workspace }}/artifacts/windows-artifacts/*
2 changes: 1 addition & 1 deletion .github/workflows/release-windows-store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts

- name: Create Draft Release & Upload artifacts
uses: marvinpinto/action-automatic-releases@v1.2.1
uses: softprops/action-gh-release@v3
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
token: "${{ secrets.GITHUB_TOKEN }}"
draft: true
prerelease: false
files: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- uses: subosito/flutter-action@v2

- name: Get Linux dependencies
Expand Down
Loading