Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Surpress all warnings in eval #35

Surpress all warnings in eval

Surpress all warnings in eval #35

Workflow file for this run

on:
push:
branches:
- master
name: Deploy
jobs:
deploy:
name: Deploy
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Cache target
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-build-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-build-
- name: Build release version
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: Deploy
shell: bash
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
run: ./ci/deploy.sh