sc-items/.gitea/workflows/pipeline.yml

37 lines
905 B
YAML
Raw Normal View History

2023-07-03 21:32:10 +00:00
name: Create archive
on:
push:
branches:
- 'dev'
env:
REPOSITORY: ${{ gitea.repository }}
BUILD_NUMBER: ${{ gitea.run_number }}
REPO_AUTH_LOGIN: ${{ secrets.REPO_AUTH_LOGIN }}
2023-07-04 13:08:48 +00:00
REPO_AUTH_PASSWORD: ${{ secrets.REPO_AUTH_PASSWORD }}
2023-07-03 21:32:10 +00:00
REPO_AUTH_TOKEN: ${{ secrets.REPO_AUTH_TOKEN }}
BRANCH: ${{ gitea.ref_name }}
jobs:
2023-07-04 13:12:23 +00:00
create_archive:
name: Create archive
2023-07-03 21:32:10 +00:00
runs-on: ubuntu-latest
2023-07-04 13:18:28 +00:00
container:
image: gitea.kdiva.ru/infrastructure/archiver
credentials:
username: "${{ env.REPO_AUTH_LOGIN }}"
2023-07-04 13:55:21 +00:00
password: "${{ env.REPO_AUTH_TOKEN }}"
2023-07-03 21:32:10 +00:00
steps:
2023-07-04 13:18:28 +00:00
- name: Checkout
uses: actions/checkout@v3
with:
repository: ${{env.REPOSITORY}}
github-server-url: https://gitea.kdiva.ru
2023-07-03 21:32:10 +00:00
2023-07-04 13:18:28 +00:00
- name: Create archive
2023-07-03 21:32:10 +00:00
run: |
2023-07-04 13:18:28 +00:00
zip -r -9 "${{env.REPOSITORY}}-${{env.BRANCH}}-${{env.BUILD_NUMBER}}.zip" ./src/