Skip to content

Add Inside Rust post on the crates.io typosquatting experiment #2448

Add Inside Rust post on the crates.io typosquatting experiment

Add Inside Rust post on the crates.io typosquatting experiment #2448

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
env:
# renovate: datasource=github-tags depName=rust lookupName=rust-lang/rust
RUST_VERSION: 1.75.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- run: rustup override set ${{ env.RUST_VERSION }}
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
- run: cargo run
- run: cp CNAME ./site/
- run: touch site/.nojekyll
- uses: actions/upload-pages-artifact@0252fc4ba7626f0298f0cf00902a25c6afc77fa8 # v3.0.0
with:
path: site
deploy:
if: ${{ github.ref == 'refs/heads/master' }}
needs: build
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- id: deployment
uses: actions/deploy-pages@87c3283f01cd6fe19a0ab93a23b2f6fcba5a8e42 # v4.0.3
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}