From 10f84c3a55b3d711caf8a2606b3a2ee1be984352 Mon Sep 17 00:00:00 2001 From: Dmitry Kirdyashkin Date: Tue, 4 Jul 2023 00:32:10 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=BF=D0=B0=D0=B9=D0=BF=D0=BB=D0=B0=D0=B9=D0=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/pipeline.yml | 35 +++++++++++++++++++++++++++++++++++ helper-scripts | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 .gitea/workflows/pipeline.yml diff --git a/.gitea/workflows/pipeline.yml b/.gitea/workflows/pipeline.yml new file mode 100644 index 0000000..4c0c890 --- /dev/null +++ b/.gitea/workflows/pipeline.yml @@ -0,0 +1,35 @@ +name: Create archive + +on: + push: + branches: + - 'dev' + +env: + REPOSITORY: ${{ gitea.repository }} + BUILD_NUMBER: ${{ gitea.run_number }} + REPO_AUTH_LOGIN: ${{ secrets.REPO_AUTH_LOGIN }} + REPO_AUTH_TOKEN: ${{ secrets.REPO_AUTH_TOKEN }} + BRANCH: ${{ gitea.ref_name }} + +jobs: + publish_image: + name: Publish image + runs-on: ubuntu-latest + + container: + image: gitea.kdiva.ru/infrastructure/archiver + credentials: + username: ${{ env.REPO_AUTH_LOGIN }} + password: ${{ env.REPO_AUTH_TOKEN }} + + steps: + - name: Checkout ${{env.REPOSITORY}} + uses: actions/checkout@v3 + with: + repository: ${{env.REPOSITORY}} + github-server-url: https://gitea.kdiva.ru + + - name: Create archive + run: | + zip -r -9 ${{env.REPOSITORY}}-${{env.BRANCH}}-${{env.BUILD_NUMBER}}.zip ./src/ diff --git a/helper-scripts b/helper-scripts index b1524b6..153edfd 160000 --- a/helper-scripts +++ b/helper-scripts @@ -1 +1 @@ -Subproject commit b1524b6710ab92045769dc50d63a85eb576197f8 +Subproject commit 153edfd6d4c91aa957c0b14171f5c676aa4cd58a