Skip to content

Commit 9179a3a

Browse files
committed
fix: move conveyor releases
1 parent eb8dd1d commit 9179a3a

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Version Tag Release
33
on:
44
push:
55
tags:
6-
- 'v*.*.*'
6+
- '*.*.*'
77
# Allow manual triggering
88
workflow_dispatch:
99

@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Extract version from tag
3030
id: get_version
31-
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
31+
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
3232

3333
- name: Install Dependencies
3434
run: npm install

conveyor.conf

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,10 @@ app {
1616
// Version from environment or package.json
1717
# version = ${?env.BUILD_VERSION} ${?package-json.version}
1818

19-
electron.version = 36.4.0
19+
electron.version = 37.2.0
2020

2121
// Publish the generated download page to GitHub Pages.
2222
site {
23-
// Use different base URL based on beta flag
24-
# base-url = ${?env.BETA_BUILD == "true" ? env.BETA_SITE_URL : env.PRODUCTION_SITE_URL} ${?"https://longtail-labs.github.io/polka-releases"}
25-
2623
github {
2724
// In production, this should come from environment variables
2825
oauth-token = ${env.SITE_RELEASE_TOKEN}

conveyor.release.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ app {
1717
vcs-url = "github.com/longtail-labs/slide.code"
1818

1919
site {
20-
base-url = "https://github.com/longtail-labs/slide.code/releases/latest/download"
20+
base-url = "github.com/longtail-labs/slide.code/releases/latest/download"
2121
}
2222
}

0 commit comments

Comments
 (0)