Skip to content

Commit

Permalink
feat: extract binary actions: Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Oct 11, 2023
1 parent d615339 commit a6893cc
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Release
on:
push:
# workflow_run:
# workflows:
# - "Build and Publish Docker"
# - "Unit Test"
# types:
# - "completed"
# branches:
# - "main"
# - "develop"

jobs:
on-success:
runs-on: ubuntu-latest
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
strategy:
fail-fast: false
matrix:
include:
- target: "gnu"
platform: linux/amd64

- target: "gnu"
platform: linux/arm64

- target: "musl"
platform: linux/amd64
tags-suffix: "-slim"

- target: "musl"
platform: linux/arm64
tags-suffix: "-slim"

- target: "gnu-s2n"
platform: linux/amd64
tags-suffix: "-s2n"

- target: "gnu-s2n"
platform: linux/arm64
tags-suffix: "-s2n"

steps:
- run: echo 'The relese triggering workflows passed'

- name: "docker pull and extract binary from docker image"
# if: ${{ github.ref_name == 'develop' }}
run: |
CONTAINER_ID=`docker create --platform=${{ matrix.platform }} ghcr.io/junkurihara/rust-rpxy:nightly${{ matrix.tags-suffix }}`
if [ ${{ matrix.platform }} = "linux/amd64" ];then PLATFORM_MAP="x86_64";else PLATFORM_MAP="aarch64";fi
docker cp ${CONTAINER_ID}:/rpxy/bin/rpxy /tmp/rpxy-nightly-${PLATFORM_MAP}-unknown-linux-${{ matrix.target }}-${{ matrix.tags-suffix }}
ls /tmp
# on-failure:
# runs-on: ubuntu-latest
# if: ${{ github.event.workflow_run.conclusion == 'failure' }}
# steps:
# - run: echo 'The release triggering workflows failed'

0 comments on commit a6893cc

Please sign in to comment.