Skip to content

Commit

Permalink
build: fix double compile
Browse files Browse the repository at this point in the history
  • Loading branch information
ChecksumDev committed Oct 17, 2023
1 parent a2bf524 commit 99e20fb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 42 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: set up cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
./target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-

- name: Build
run: cargo build --release

- name: Login to GitHub Packages
uses: docker/login-action@v3
with:
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: set up cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
./target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-

- name: Build
run: cargo build --release

- name: Login to GitHub Packages
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit 99e20fb

Please sign in to comment.