mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
38 lines
858 B
YAML
38 lines
858 B
YAML
name: Generate Docker Layer
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Extract DOCKER_TAG using tag name
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
run: |
|
|
echo "DOCKER_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
|
|
|
|
- name: Use default DOCKER_TAG
|
|
if: startsWith(github.ref, 'refs/tags/') != true
|
|
run: |
|
|
echo "DOCKER_TAG=latest" >> $GITHUB_ENV
|
|
|
|
- name: Login to Github registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
registry: ghcr.io
|
|
|
|
- uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
tags: ghcr.io/${{ github.repository }}:${{ env.DOCKER_TAG }}
|