Skip to content

Commit 01d8fdd

Browse files
committed
add nightly workflow
1 parent 6a1dbb1 commit 01d8fdd

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

.github/workflows/nightly.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Nightly workflow
2+
3+
on:
4+
push:
5+
branches:
6+
- nightly
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
test:
13+
uses: ./.github/workflows/test.yml
14+
15+
package:
16+
uses: ./.github/workflows/package.yml
17+
18+
publish:
19+
uses: ./.github/workflows/publish.yml
20+
secrets:
21+
PREFIX_API_KEY: ${{ secrets.PREFIX_API_KEY }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release tag pipeline
1+
name: Release workflow
22

33
on:
44
push:

mojoproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
authors = ["saviorand"]
3-
channels = ["conda-forge", "https://conda.modular.com/max-nightly", "https://repo.prefix.dev/mojo-community"]
3+
channels = ["conda-forge", "https://conda.modular.com/max-nightly", "https://repo.prefix.dev/mojo-community-nightly", "https://repo.prefix.dev/mojo-community"]
44
description = "Simple and fast HTTP framework for Mojo!"
55
name = "lightbug_http"
66
platforms = ["osx-arm64", "linux-64"]
@@ -16,4 +16,4 @@ bench_server = { cmd = "magic run mojo build bench_server.mojo && ./bench_server
1616
[dependencies]
1717
max = ">=24.5.0,<25"
1818
gojo = ">=0.1.12"
19-
small_time = ">=0.1.3"
19+
small_time = ">=0.1.4.nightly"

recipes/recipe.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ context:
55

66
package:
77
name: "lightbug_http"
8-
version: 0.1.4
8+
version: 0.1.4.nightly
99

1010
source:
1111
- path: ../lightbug_http
@@ -19,8 +19,8 @@ build:
1919
requirements:
2020
run:
2121
- max >=24.5.0
22-
- gojo == 0.1.9
23-
- small_time == 0.1.3
22+
- gojo == 0.1.12
23+
- small_time == 0.1.4.nightly
2424

2525
about:
2626
homepage: https://github.com/saviorand/lightbug_http

0 commit comments

Comments
 (0)