generated from thegrind/laravel-dockerized
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
name: Build & Push Docker Image to Registry
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '24'
|
|
|
|
- name: Set up PHP with Composer
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.4'
|
|
tools: composer:v2
|
|
|
|
- name: Install PHP dependencies
|
|
run: composer install --no-interaction --prefer-dist --optimize-autoloader
|
|
|
|
- name: Install JS dependencies and build assets
|
|
run: |
|
|
npm ci
|
|
npm run build
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log in to Gitea Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: gitgud.foo
|
|
username: docker_registry_pusher
|
|
password: ${{ secrets.DOCKER_USER_PASSWORD }}
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: ${{ github.workspace }}
|
|
file: ${{ github.workspace }}/Dockerfile
|
|
push: true
|
|
tags: |
|
|
gitgud.foo/thegrind/scripthost:latest
|
|
gitgud.foo/thegrind/scripthost:${{ github.event.release.tag_name }} |