You've already forked oscript-images
mirror of
https://github.com/pravets/oscript-images.git
synced 2025-11-23 22:24:41 +02:00
chore: добавил конфиг сборки winow в GitHub Actions
This commit is contained in:
26
.github/workflows/build-winow.yml
vendored
Normal file
26
.github/workflows/build-winow.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
name: Build winow Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'winow' # реагировать на тег winow
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
DOCKER_REGISTRY_URL: ${{ secrets.DOCKER_REGISTRY_URL }}
|
||||
DOCKER_LOGIN: ${{ secrets.DOCKER_LOGIN }}
|
||||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Build and Push Docker image
|
||||
run: |
|
||||
echo "Собираем winow"
|
||||
./src/build-winow.sh
|
||||
Reference in New Issue
Block a user