Skip to content

Commit

Permalink
Create apisix-dev-env.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dongjiang1989 authored Sep 14, 2024
1 parent c7b5038 commit efb9bef
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/apisix-dev-env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
on:
push:
branches: [ "master" ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
pull_request:
branches: [ "master" ]

env:
REGISTRY: docker.io

jobs:
generate-jobs:
name: apisix-dev-env
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
-
name: apisix-dev-env
image: dongjiang1989/apisix-dev-env
file: ./Dockerfile.apisix-dev-env
platforms: linux/amd64,linux/arm64

steps:
-
name: Checkout
uses: actions/checkout@v3
- id: git-x
run: |
echo "::set-output name=git-version::$(git describe --tags --always)"
- id: git-branch
run: |
echo "::set-output name=git-branch::$(echo ${GITHUB_REF##*/} | tr '[A-Z]' '[a-z]')"
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
file: ${{ matrix.file }}
platforms: ${{ matrix.platforms }}
push: true
tags: |
${{ env.REGISTRY }}/${{ matrix.image }}:${{steps.git-branch.outputs.git-branch}}
${{ env.REGISTRY }}/${{ matrix.image }}:latest
- name: Test ${{ matrix.name }}
run: |
docker pull ${{ env.REGISTRY }}/${{ matrix.image}}:${{steps.git-branch.outputs.git-branch}}
docker image inspect ${{ env.REGISTRY }}/${{ matrix.image}}:${{steps.git-branch.outputs.git-branch}}

0 comments on commit efb9bef

Please sign in to comment.