onlyoffice-ce-docker-license/.github/workflows/docker-image.yml

26 lines
473 B
YAML
Raw Permalink Normal View History

2021-04-26 09:34:06 +00:00
name: Docker Image CI
on:
push:
2022-06-05 10:31:28 +00:00
branches: [ "main" ]
pull_request:
branches: [ "main" ]
2022-06-05 10:52:01 +00:00
workflow_dispatch:
2021-04-26 09:34:06 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2022-06-05 10:31:28 +00:00
- uses: actions/checkout@v3
2022-06-05 10:52:01 +00:00
- name: Build and push Docker images
uses: docker/build-push-action@v1
2022-06-05 10:31:28 +00:00
with:
2022-06-05 10:52:01 +00:00
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: xbeeant/oo-unlimit
2023-06-15 02:43:16 +00:00
tags: latest, 7.4.0.1
2022-09-24 05:04:27 +00:00