forked from txpipe/oura
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d4686f
commit c00d392
Showing
1 changed file
with
19 additions
and
67 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
name: Release | ||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
# Compiles binaries using a bulder matrix | ||
binary_build: | ||
name: Build release binaries | ||
strategy: | ||
|
@@ -44,10 +38,6 @@ jobs: | |
os: windows-latest | ||
name: oura-x86_64-pc-windows-msvc.zip | ||
|
||
- target: aarch64-pc-windows-msvc | ||
os: windows-latest | ||
name: oura-aarch64-pc-windows-msvc.zip | ||
|
||
runs-on: ${{ matrix.os }} | ||
continue-on-error: true | ||
steps: | ||
|
@@ -62,11 +52,11 @@ jobs: | |
brew install [email protected] | ||
- name: Setup | Checkout | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@v3 | ||
|
||
# Cache files between builds | ||
- name: Setup | Cache Cargo | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].1 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
|
@@ -81,14 +71,11 @@ jobs: | |
profile: minimal | ||
target: ${{ matrix.target }} | ||
|
||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v2 | ||
|
||
- name: Build | Build | ||
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --release --locked --all-features --target ${{ matrix.target }} | ||
args: --release --all-features --target ${{ matrix.target }} | ||
use-cross: ${{ matrix.os == 'ubuntu-latest' }} | ||
|
||
- name: Post Build | Prepare artifacts [Windows] | ||
|
@@ -109,68 +96,23 @@ jobs: | |
cd - | ||
- name: Deploy | Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ matrix.name }} | ||
path: ${{ matrix.name }} | ||
|
||
# Creates a GitHub Container package using multi-arch docker builds | ||
container_build: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
tags: | | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
type=semver,pattern=v{{major}} | ||
type=semver,pattern=v{{major}}.{{minor}} | ||
type=semver,pattern=v{{version}} | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
# temporarly removing arm platform until we resolve the ca-certificates issue | ||
#platforms: linux/arm64,linux/amd64 | ||
platforms: linux/amd64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
||
# Create GitHub release with Rust build targets and release notes | ||
github_release: | ||
name: Create GitHub Release | ||
needs: [binary_build, container_build] | ||
needs: [binary_build] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup | Checkout | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup | Go | ||
uses: actions/setup-go@v5 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.16" | ||
|
||
|
@@ -191,3 +133,13 @@ jobs: | |
files: oura-*/oura-* | ||
body_path: RELEASE.md | ||
draft: true | ||
|
||
- name: Deploying to Amazon S3 | ||
uses: dvelasquez/deploy-s3-action@main | ||
with: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} | ||
AWS_BUCKET_NAME: ${{ secrets.AWS_BUCKET_NAME }} | ||
BUCKET_PATH: "/" | ||
DIST_LOCATION_CODE: ./ |