Skip to content

Commit

Permalink
Merge pull request #911 from winpax/crates-release
Browse files Browse the repository at this point in the history
Added job to publish to crates.io
  • Loading branch information
jewlexx authored Dec 11, 2024
2 parents c7019d2 + bce0729 commit 76687f0
Show file tree
Hide file tree
Showing 21 changed files with 313 additions and 500 deletions.
42 changes: 29 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,22 @@ env:
CONTRIBUTORS_TOKEN: ${{ secrets.CONTRIBUTORS_TOKEN }}
IS_CI: true
IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/') }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_PUBLISH_TOKEN }}

jobs:
cargo-deny:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v2
- uses: actions/checkout@v4.2.2
- uses: EmbarkStudios/cargo-deny-action@v2.0.4

clippy:
name: Clippy
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/[email protected].3
- uses: actions/checkout@v4.2.2
- uses: Swatinem/[email protected].5

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -49,7 +50,7 @@ jobs:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -64,11 +65,11 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- uses: Swatinem/[email protected].3
- uses: actions/checkout@v4.2.2
- uses: Swatinem/[email protected].5

- name: Install and setup Scoop
uses: MinoruSekine/setup-scoop@v4
uses: MinoruSekine/setup-scoop@v4.0.1
with:
buckets: extras java

Expand All @@ -86,8 +87,8 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- uses: Swatinem/[email protected].3
- uses: actions/checkout@v4.2.2
- uses: Swatinem/[email protected].5
with:
key: build-${{ matrix.arch }}
- uses: extractions/setup-just@v2
Expand All @@ -105,12 +106,27 @@ jobs:
needs: [cargo-deny, build, test, clippy, format]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2
- uses: extractions/setup-just@v2

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Verify crate
run: cargo publish --dry-run

- name: Check version matches tag
run: |
$version = (cargo metadata --format-version 1 | ConvertFrom-Json).packages[0].version
$tag = "${{ github.ref_name }}"
if ($tag -ne "v$version") {
throw "Version mismatch: tag=$tag, Cargo.toml=$version"
}
- name: Publish to crates.io
if: ${{ !github.event.release.prerelease }}
run: cargo publish

- name: Build and Package
if: ${{ !github.event.release.prerelease }}
run: just release-all
Expand All @@ -120,7 +136,7 @@ jobs:
run: just beta-release-all

- name: Upload a Build Artifact
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
name: package.zip
path: release/*
Expand All @@ -133,7 +149,7 @@ jobs:
release/*.exe.sha256
- name: VirusTotal Scan
uses: crazy-max/ghaction-virustotal@v4
uses: crazy-max/ghaction-virustotal@v4.1.0
with:
update_release_body: true
vt_api_key: ${{ secrets.VT_API_KEY }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed `json` flag from `app download` command
- Download progress bars now show app name instead of url leaf
- Download hash checks now report to a progress bar rather than a print message for each
- Logs will now go into `<PWD>/logs` if running with debug assertions

### Removed

- `sfsu_macros` crate

## [1.15.0] - 2024-03-11

Expand Down
Loading

0 comments on commit 76687f0

Please sign in to comment.