Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1683af8
Add copyright notice to LICENSE-MIT
Apr 30, 2025
2daf37d
Match copyright notices with those in rust-lang/rust
Apr 30, 2025
9d2a6f7
Merge pull request #2149 from zopsicle/mit-copyright
senekor May 17, 2025
246b098
Include marker and unknown teams with a website section
Kobzol May 17, 2025
1096390
Merge pull request #2152 from Kobzol/include-other-teams
senekor May 17, 2025
5fb95f6
Bump tar-fs from 3.0.8 to 3.0.9
dependabot[bot] Jun 3, 2025
8488658
Merge pull request #2155 from rust-lang/dependabot/npm_and_yarn/tar-f…
senekor Jun 3, 2025
ac83ff4
Added Zed to the Tools -> First-class Editor Support and updated the CSS
bishopdotdev Jun 6, 2025
a75a9c9
Fix broken links on tools page
senekor Jun 6, 2025
a1382a2
Removed Eclipse from the Editors page and locals references.
bishopdotdev Jun 6, 2025
9f9ef0a
Updating Zed Link
bishopdotdev Jun 6, 2025
d997533
Removed Eclipse from TR locals file
bishopdotdev Jun 7, 2025
c47da98
Merge pull request #2158 from TrueNorthNinja/AddingZedToToolsPage
senekor Jun 7, 2025
37b537d
Merge pull request #2160 from rust-lang/senekor-rwrltonxxoyr
senekor Jun 7, 2025
5707f71
Remove discord from the website
oli-obk Jun 2, 2025
0136a6b
Merge pull request #2162 from oli-obk/unity
Manishearth Jun 10, 2025
5cafc1b
Fix clippy warnings
senekor Jul 4, 2025
f736d72
Fix title of footer logos
senekor Jul 4, 2025
93d89c5
Merge pull request #2169 from rust-lang/push-qvyqnvqrsmsx
Manishearth Jul 4, 2025
c5bd23c
Add rendering of the web into a directory
Kobzol Jul 26, 2025
aed991f
Remove old code and render individual categories
Kobzol Aug 5, 2025
ef1ab10
Add governance pages
Kobzol Aug 6, 2025
c370145
Remove rocket
Kobzol Aug 6, 2025
c3c85fc
Restructure code around and add redirect template
Kobzol Aug 6, 2025
b51ddd7
Fill missing `baseurl` prefixes in templates
Kobzol Aug 6, 2025
b5c7db8
Handle base URL in fonts and allow changing it
Kobzol Aug 6, 2025
667e8d7
Add CI pipeline
Kobzol Aug 6, 2025
cb76e5d
Fix baseurl
Kobzol Aug 6, 2025
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
35 changes: 32 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CI
on: [push, pull_request]
on: [ push, pull_request ]
env:
RUST_BACKTRACE: 1
jobs:
Expand All @@ -12,8 +12,7 @@ jobs:
with:
components: rustfmt

- name: Formatting
run: cargo fmt --all -- --check
- uses: Swatinem/rust-cache@v2

- name: Test
run: |
Expand All @@ -22,3 +21,33 @@ jobs:
cargo build --all --locked
cargo clippy -- --deny warnings
cargo test --all --locked

- name: Formatting
run: cargo fmt --all -- --check

- name: Build website
run: cargo run
env:
BASE_URL: "/www.rust-lang.org"

- name: Configure GitHub Pages
uses: actions/configure-pages@v5

- name: Upload website
uses: actions/upload-pages-artifact@v3
with:
path: html

deploy:
needs: [ build ]
#if: github.ref == 'refs/heads/master'
environment:
name: github-pages
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4
Loading
Loading