Feat: Add Last-Modified and Added to sort tags in search view #4771
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release_clang | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: installdeps | |
run: sudo ./build.sh installdeps | |
- name: install_clang | |
run: sudo apt-get install clang | |
- name: build | |
env: | |
CC: /usr/bin/clang | |
run: ./build.sh release | |
- name: install | |
run: sudo ./build.sh install |