パッケージビルド手順の変更・パッケージの追加

This commit is contained in:
2023-01-30 01:36:59 +00:00
commit b904b9922a
18 changed files with 348 additions and 0 deletions

19
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,19 @@
stages:
- deploy
.build: &build
image: alpine:latest
stage: deploy
script:
- chmod +x ./package.sh && ./package.sh
detect-change:
rules:
- if: '$CI_COMMIT_BRANCH == "main"'
<<: *build
timer:
rules:
- if: $CI_PIPELINE_SOURCE == "schedule"
when: manual
<<: *build