Skip to content

Commit 70dc747

Browse files
Adwait DeshpandeAdwait Deshpande
authored andcommitted
correct url
1 parent 6c51a0b commit 70dc747

File tree

3 files changed

+36
-9
lines changed

3 files changed

+36
-9
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
tags:
66
- "v*.*.*"
77

8+
permissions:
9+
contents: write
10+
811
jobs:
912
build-release:
1013
runs-on: ${{ matrix.os }}
@@ -44,10 +47,16 @@ jobs:
4447
cp "$BIN" "dist/$APP-$PLATFORM"
4548
tar -C dist -czf "$APP-$PLATFORM.tar.gz" "$APP-$PLATFORM"
4649
47-
- name: Upload Release Asset
50+
- name: Upload build artifact (always)
51+
uses: actions/upload-artifact@v4
52+
with:
53+
name: ${{ runner.os }}-binaries
54+
path: |
55+
devspace-sweeper-*.tar.gz
56+
57+
- name: Upload to GitHub Release
4858
uses: softprops/action-gh-release@v2
4959
with:
5060
files: |
5161
devspace-sweeper-*.tar.gz
52-
env:
53-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62+
token: ${{ secrets.RELEASE_TOKEN != '' && secrets.RELEASE_TOKEN || secrets.GITHUB_TOKEN }}

LICENSE

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
11
MIT License
22

3-
<<<<<<< HEAD
4-
Copyright (c) 2025 adwaitdeshpande
5-
=======
63
Copyright (c) 2025 DevSpace Sweeper Contributors
7-
>>>>>>> 3679f1d (init: devspace-sweeper MVP)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+
23+
MIT License
24+
25+
Copyright (c) 2025 adwaitdeshpande
826

927
Permission is hereby granted, free of charge, to any person obtaining a copy
1028
of this software and associated documentation files (the "Software"), to deal

packaging/homebrew/devspace-sweeper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ class DevspaceSweeper < Formula
44
version "0.1.2"
55

66
on_macos do
7-
url "https://github.com/adwaitdeshpande/devspace-sweeper/releases/download/v0.1.0/devspace-sweeper-macos.tar.gz"
7+
url "https://github.com/adwaitdeshpande/devspace-sweeper/releases/download/v0.1.2/devspace-sweeper-macos.tar.gz"
88
sha256 "REPLACE_WITH_MACOS_TARBALL_SHA256"
99
end
1010

1111
on_linux do
12-
url "https://github.com/adwaitdeshpande/devspace-sweeper/releases/download/v0.1.0/devspace-sweeper-linux.tar.gz"
12+
url "https://github.com/adwaitdeshpande/devspace-sweeper/releases/download/v0.1.2/devspace-sweeper-linux.tar.gz"
1313
sha256 "REPLACE_WITH_LINUX_TARBALL_SHA256"
1414
end
1515

0 commit comments

Comments
 (0)