Skip to content

Commit

Permalink
feat: update api.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lennoxlotl authored Oct 21, 2024
1 parent 706ee81 commit 26dff78
Showing 1 changed file with 32 additions and 28 deletions.
60 changes: 32 additions & 28 deletions .github/workflows/api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,35 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
# - name: Setup environment
# run: |
# echo "SHORT_COMMIT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
# echo "BRANCH_NAME=$(git branch --show-current)" >> $GITHUB_ENV
# - name: Copy binary
# run: mv target/release/api api/api
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Login to repository
# uses: docker/login-action@v3
# with:
# registry: ${{ env.REGISTRY }}
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
- name: Test matrix output
run: echo "$MATRIX_ENV"
env:
MATRIX_ENV: ${{ matrix }}
# - name: Build and push
# uses: docker/build-push-action@v3
# with:
# push: true
# platforms: linux/arm64
# context: apps/api
# file: apps/api/Dockerfile
# tags: docker.moonclient.dev/api:git-${{ env.BRANCH_NAME }}-${{ env.SHORT_COMMIT_SHA }}
- name: Setup environment
run: |
echo "SHORT_COMMIT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
echo "BRANCH_NAME=$(git branch --show-current)" >> $GITHUB_ENV
- name: Build binary
run: cargo build --release
- name: Copy binary
run: mv target/release/api api/api
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to repository
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
platforms: linux/arm64
context: apps/api
file: apps/api/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 26dff78

Please sign in to comment.