Skip to content

Commit 8466ebf

Browse files
authored
Merge branch 'frectonz:main' into main
2 parents 2ecf768 + 4b07da4 commit 8466ebf

120 files changed

Lines changed: 25500 additions & 5992 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use flake

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: frectonz

.github/workflows/ci.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build SQLite Studio
1+
name: Build SQL Studio
22

33
on:
44
push:
@@ -11,7 +11,6 @@ on:
1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
14-
1514
steps:
1615
- name: Checkout repository
1716
uses: actions/checkout@v4
@@ -33,3 +32,15 @@ jobs:
3332
3433
- name: Build Rust project
3534
run: cargo build --release
35+
36+
build-with-nix:
37+
runs-on: ubuntu-latest
38+
steps:
39+
- uses: actions/checkout@v4
40+
- uses: DeterminateSystems/nix-installer-action@main
41+
42+
- name: Build Release
43+
run: nix build .
44+
45+
- name: Build Docker Image
46+
run: nix build .#docker

.github/workflows/image.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Publish Docker Image
2+
3+
on:
4+
push:
5+
tags:
6+
- '**[0-9]+.[0-9]+.[0-9]+*'
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-24.04
11+
12+
permissions:
13+
contents: read
14+
id-token: write
15+
16+
env:
17+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: DeterminateSystems/nix-installer-action@main
22+
- uses: DeterminateSystems/magic-nix-cache-action@main
23+
24+
- name: Deploy Docker Image
25+
run: nix run .#deploy

0 commit comments

Comments
 (0)