mirror of
https://github.com/Llewellynvdm/zoxide.git
synced 2024-11-10 23:30:57 +00:00
116 lines
3.7 KiB
YAML
116 lines
3.7 KiB
YAML
on:
|
|
push:
|
|
tags:
|
|
- "v*" # push events to matching v*, i.e. v1.0, v20.15.10
|
|
|
|
jobs:
|
|
build-linux:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
target: ["x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "armv7-unknown-linux-musleabihf"]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
use-cross: true
|
|
command: build
|
|
args: --release --target ${{ matrix.target }}
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: "zoxide-${{ matrix.target }}"
|
|
path: "target/${{ matrix.target }}/release/zoxide"
|
|
|
|
build-darwin:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --release --target x86_64-apple-darwin
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: "zoxide-x86_64-apple-darwin"
|
|
path: "target/x86_64-apple-darwin/release/zoxide"
|
|
|
|
build-windows:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --release --target x86_64-pc-windows-msvc
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: "zoxide-x86_64-pc-windows-msvc"
|
|
path: "target/x86_64-pc-windows-msvc/release/zoxide.exe"
|
|
|
|
release-upload:
|
|
needs:
|
|
- build-linux
|
|
- build-darwin
|
|
- build-windows
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ github.ref }}
|
|
release_name: Release ${{ github.ref }}
|
|
|
|
- uses: actions/download-artifact@v2
|
|
|
|
- name: Display structure of downloaded files
|
|
run: ls -lR
|
|
|
|
- uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: "zoxide-x86_64-unknown-linux-gnu/zoxide"
|
|
asset_name: "zoxide-x86_64-unknown-linux-gnu"
|
|
asset_content_type: application/octet-stream
|
|
|
|
- uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: "zoxide-x86_64-unknown-linux-musl/zoxide"
|
|
asset_name: "zoxide-x86_64-unknown-linux-musl"
|
|
asset_content_type: application/octet-stream
|
|
|
|
- uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: "zoxide-armv7-unknown-linux-musleabihf/zoxide"
|
|
asset_name: "zoxide-armv7-unknown-linux-musleabihf"
|
|
asset_content_type: application/octet-stream
|
|
|
|
- uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: "zoxide-x86_64-apple-darwin/zoxide"
|
|
asset_name: "zoxide-x86_64-apple-darwin"
|
|
asset_content_type: application/octet-stream
|
|
|
|
- uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: "zoxide-x86_64-pc-windows-msvc/zoxide.exe"
|
|
asset_name: "zoxide-x86_64-pc-windows-msvc.exe"
|
|
asset_content_type: application/octet-stream
|