-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor CI workflow to build, publish Docker image, and release bina…
…ries
- Loading branch information
Showing
1 changed file
with
76 additions
and
13 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,29 +1,92 @@ | ||
name: Build and Publish Docker Image | ||
name: Build, Publish Docker Image, and Release Binaries | ||
|
||
on: | ||
push: | ||
branches: | ||
- release | ||
|
||
jobs: | ||
build-release: | ||
build-docker-image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
uses: docker/setup-qemu-action@v2 | ||
with: | ||
platforms: all | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Build Docker image | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and Push Docker image | ||
env: | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
run: | | ||
docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.DOCKER_PASSWORD }} | ||
echo $DOCKER_PASSWORD | docker login ghcr.io -u ${{ github.actor }} --password-stdin | ||
docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/assetsart/easy-proxy:${{ github.sha }} . --push | ||
- name: Version to latest tag | ||
run: docker pull ghcr.io/assetsart/easy-proxy:${{ github.sha }} | ||
- name: Version to latest tag | ||
run: docker tag ghcr.io/assetsart/easy-proxy:${{ github.sha }} ghcr.io/assetsart/easy-proxy:latest | ||
- name: Push latest tag to registry | ||
run: docker push ghcr.io/assetsart/easy-proxy:latest | ||
- name: Pull and tag latest Docker image | ||
run: | | ||
docker pull ghcr.io/assetsart/easy-proxy:${{ github.sha }} | ||
docker tag ghcr.io/assetsart/easy-proxy:${{ github.sha }} ghcr.io/assetsart/easy-proxy:latest | ||
docker push ghcr.io/assetsart/easy-proxy:latest | ||
build-and-release-binaries: | ||
runs-on: ubuntu-latest | ||
needs: build-docker-image | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Rust | ||
uses: actions/setup-rust@v1 | ||
with: | ||
rust-version: stable | ||
|
||
- name: Install cross | ||
run: cargo install cross --git https://github.com/cross-rs/cross | ||
|
||
- name: Build Linux binary | ||
run: | | ||
cross build --target x86_64-unknown-linux-gnu --release | ||
mkdir -p build/linux | ||
cp target/x86_64-unknown-linux-gnu/release/easy-proxy build/linux/ | ||
- name: Build macOS binary | ||
run: | | ||
cross build --target x86_64-apple-darwin --release | ||
mkdir -p build/macos | ||
cp target/x86_64-apple-darwin/release/easy-proxy build/macos/ | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.sha }} | ||
release_name: "Release ${{ github.sha }}" | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Upload Linux binary to Release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: build/linux/easy-proxy | ||
asset_name: easy-proxy-linux | ||
asset_content_type: application/octet-stream | ||
|
||
- name: Upload macOS binary to Release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: build/macos/easy-proxy | ||
asset_name: easy-proxy-macos | ||
asset_content_type: application/octet-stream |