Skip to content

Commit

Permalink
Always remove artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
francescmm committed Oct 20, 2024
1 parent 37d6caa commit 89f937a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,12 @@ jobs:
needs: [Ubuntu, Windows, MacOS, Appimage]
runs-on: ubuntu-latest
steps:
- name: Checking out the code
uses: actions/checkout@v4
with:
submodules: 'true'
fetch-depth: 0

- name: Delete previous dev-latest release
continue-on-error: true
if: github.ref == 'refs/heads/master'
Expand All @@ -384,6 +390,7 @@ jobs:
with:
name: "Continuous Build: latest development"
tag_name: "dev-latest"
body: "Build with the latest changes in master."
draft: false
files: |
appimage/GitQlient*.AppImage
Expand All @@ -406,6 +413,7 @@ jobs:
PostBuildClean:
name: Post-release actions
runs-on: ubuntu-latest
if: always()
needs: [UpdateAssets]
steps:
- name: Clean artifacts
Expand Down

0 comments on commit 89f937a

Please sign in to comment.