mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-24 20:45:05 +00:00
25 lines
468 B
YAML
25 lines
468 B
YAML
name: CI-Docker
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
repository_dispatch:
|
|
types: [run_build]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: docker/build-push-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: ${{ env.GITHUB_REPOSITORY }}
|
|
tags: latest
|
|
tag_with_ref: true
|
|
add_git_labels: true
|