upload to S3 #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
permissions: | |
contents: write | |
jobs: | |
release: | |
name: Cross build for ${{ matrix.target }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
target: mipsel-unknown-linux-musl | |
exe: rathole | |
cross: true | |
args: --best --lzma | |
strip: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.71 | |
default: true | |
- name: Install OpenSSL | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt-get install pkg-config libssl-dev | |
# Cross build | |
- name: Install cross | |
if: matrix.cross | |
run: cargo install --version 0.2.5 cross | |
- name: Run tests | |
if: matrix.cross | |
run: cross test --release --target ${{ matrix.target }} --verbose --no-default-features --features client | |
- name: Build release | |
if: matrix.cross | |
run: cross build --release --target ${{ matrix.target }} --features client --no-default-features | |
- name: Compress binaries | |
uses: svenstaro/upx-action@v2 | |
with: | |
files: | | |
target/${{ matrix.target }}/release/${{ matrix.exe }} | |
args: ${{ matrix.args }} | |
strip: ${{ matrix.strip }} | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
- name: Upload S3 Bucket | |
run: | | |
aws s3 rm s3://${{ vars.AWS_S3_BUCKET }}/${{ matrix.exe }}/target/${{ matrix.target }}/release --recursive | |
aws s3 cp ./target/${{ matrix.target }}/release/${{ matrix.exe }} s3://${{ vars.AWS_S3_BUCKET }}/${{ matrix.exe }}/target/${{ matrix.target }}/release/${{ matrix.exe }} | |
- name: Zip Release | |
uses: TheDoctor0/zip-release@0.7.5 | |
with: | |
type: zip | |
filename: rathole-${{ matrix.target }}.zip | |
directory: target/${{ matrix.target }}/release/ | |
path: ${{ matrix.exe }} | |
- name: Publish | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: target/${{ matrix.target }}/release/rathole-${{ matrix.target }}.zip | |
generate_release_notes: true | |
draft: false |