Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: Rewrite using askama and htmx #179

Merged
merged 39 commits into from
Jun 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
372882f
refactor: It builds
gbbirkisson Feb 1, 2024
7bd3ee5
fix: Build
gbbirkisson Feb 1, 2024
1a59053
fix: Cleanup build
gbbirkisson Feb 8, 2024
b09e1f1
fix: Update build again
gbbirkisson Feb 9, 2024
e3e0446
fix: Trigger build
gbbirkisson Feb 9, 2024
453e191
fix: More fix
gbbirkisson Feb 9, 2024
671e403
fix: Workflow
gbbirkisson Feb 9, 2024
811225d
fix: More stuff
gbbirkisson Feb 9, 2024
1e7e58c
fix: Test release
gbbirkisson Feb 9, 2024
aa213d3
fix: More build fixes
gbbirkisson Feb 9, 2024
c9c2212
fix: More changes
gbbirkisson Feb 9, 2024
48ef2d9
fix: Target
gbbirkisson Feb 9, 2024
bb74c60
fix: Try again
gbbirkisson Feb 14, 2024
884c14a
fix: Disable docker for a while
gbbirkisson Feb 14, 2024
3715dec
fix: Update build
gbbirkisson Feb 14, 2024
2da783c
fix: More build fixes
gbbirkisson Feb 14, 2024
d0735e6
fix: Build
gbbirkisson Feb 14, 2024
8bbeab9
fix: Temp
gbbirkisson Feb 14, 2024
5f490d1
fix: Build
gbbirkisson Feb 14, 2024
40dca1b
fix: Cleanup
gbbirkisson Feb 14, 2024
385bcb0
fix: More things
gbbirkisson Feb 14, 2024
4cd8a51
fix: More changes
gbbirkisson Feb 14, 2024
93e80bf
fix: Continue
gbbirkisson Feb 14, 2024
73fe268
fix: And more ...
gbbirkisson Feb 14, 2024
80bd7be
fix: Continue implementation
gbbirkisson Feb 26, 2024
4efdfc4
fix: Continue
gbbirkisson Apr 16, 2024
97d8cfb
fix: Continue
gbbirkisson Apr 17, 2024
4136e59
fix: Typos
gbbirkisson Apr 19, 2024
202e4aa
fix: Swap a for div
gbbirkisson Apr 24, 2024
d93d490
fix: Continue
gbbirkisson Apr 26, 2024
50c39cb
fix: Bar buttons
gbbirkisson Apr 30, 2024
d32caa4
fix: Implement filter
gbbirkisson May 2, 2024
8a59bb9
fix: Implement ordering
gbbirkisson May 2, 2024
149756f
fix: Kill videos when preview is closed
gbbirkisson May 2, 2024
af2b3d4
fix: Update rust toolchain
gbbirkisson Jun 3, 2024
c136e1b
fix: UUID calc regression
gbbirkisson Jun 3, 2024
faf8ba2
fix: Clean up linting
gbbirkisson Jun 3, 2024
ec42761
fix: Cleanup
gbbirkisson Jun 4, 2024
15b1958
fix: Tests
gbbirkisson Jun 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Build
gbbirkisson committed Feb 14, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 5f490d150b03b850cd68f723c21e295d05cbf7bd
26 changes: 10 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -48,11 +48,16 @@ jobs:
args: "--locked --release --no-default-features -F release"
cross-version: v0.2.5

- name: Move to release dir
run: |
mkdir release
mv target/${{ matrix.target }}/release/spis release/spis-${{ matrix.target }}
- name: Store artifact
uses: actions/upload-artifact@v4
with:
name: spis-${{ matrix.target }}
path: target/${{ matrix.target }}/release/spis
path: release/spis-${{ matrix.target }}

release-bins:
name: Release binaries
@@ -67,27 +72,16 @@ jobs:
run: |
mkdir release
- name: Get x86_64 server artifact
uses: actions/download-artifact@v4
with:
name: spis-x86_64-unknown-linux-gnu
path: release

- name: Get armv7 server artifact
uses: actions/download-artifact@v4
with:
name: spis-armv7-unknown-linux-gnueabihf
path: release

- name: Get aarch64 server artifact
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: spis-aarch64-unknown-linux-gnu
path: release
pattern: spis-*
merge-multiple: true

- name: Temp
run: |
ls release
ls -l release
- name: Setup QEMU
uses: docker/setup-qemu-action@v3