mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 11:59:48 -05:00
dca8041990
* feat(deps): allow using openssl for tls this allows reusing the openssl present on a distro already, and takes a release build with it from 5.5 to 4.7mb * chore(shuttle): update the enabled features for deployment --------- Co-authored-by: Orhun Parmaksız <orhunparmaksiz@gmail.com>
33 lines
923 B
YAML
33 lines
923 B
YAML
name: Deploy on Shuttle
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*.*.*"
|
|
|
|
jobs:
|
|
deploy:
|
|
name: Deploy
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout the repository
|
|
uses: actions/checkout@v3
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: minimal
|
|
override: true
|
|
- name: Install cargo-binstall
|
|
uses: taiki-e/install-action@cargo-binstall
|
|
- name: Install cargo-shuttle
|
|
run: cargo binstall -y cargo-shuttle
|
|
- name: Prepare for deployment
|
|
shell: bash
|
|
run: sed -i 's|default = \["rustls"\]|default = \["rustls", "shuttle"\]|g' Cargo.toml
|
|
- name: Login
|
|
run: cargo shuttle login --api-key ${{ secrets.SHUTTLE_TOKEN }}
|
|
- name: Restart
|
|
run: cargo shuttle project restart
|
|
- name: Deploy
|
|
run: cargo shuttle deploy --allow-dirty --no-test
|