diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index 50f4c01..3718d2a 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -92,4 +92,35 @@ jobs: build-args: PACKAGE_VERSION=${{ matrix.version }} tags: | git.euph.dev/actions/runner-java-${{ matrix.version }}:latest - git.euph.dev/actions/runner-java-${{ matrix.version }}:${{ gitea.run_number }} \ No newline at end of file + git.euph.dev/actions/runner-java-${{ matrix.version }}:${{ gitea.run_number }} + + build_lua: + runs-on: 'priviliged' + needs: build_act + strategy: + matrix: + version: [5.1, 5.2, 5.3, 5.4] + steps: + - name: Install Docker + run: | + rm $(which docker) && curl -fsSL https://get.docker.com | sh + - name: Set up QEMU + uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3' + - name: Setup Buildx + uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3' + - name: Login to Registry + uses: 'https://git.euph.dev/actions/docker-login@v3' + with: + registry: git.euph.dev + username: ${{ secrets.DEPLOY_USER }} + password: ${{ secrets.DEPLOY_SECRET }} + - name: Build and push Lua image + id: build_act_lua + uses: 'https://git.euph.dev/actions/docker-build-push@v5' + with: + context: "{{defaultContext}}:images/actions/lua" + push: true + build-args: PACKAGE_VERSION=${{ matrix.version }} + tags: | + git.euph.dev/actions/runner-lua-${{ matrix.version }}:latest + git.euph.dev/actions/runner-lua-${{ matrix.version }}:${{ gitea.run_number }} \ No newline at end of file