From 98aad8c4fc9394d3a3b01f154d584b1d5c2f6e5f Mon Sep 17 00:00:00 2001 From: Semen Loktionov Date: Fri, 1 Dec 2023 13:40:01 +0200 Subject: [PATCH] 1.1.0 --- .github/workflows/local.yml | 31 +++++++++++++++++++++++++++++++ CHANGELOG.md | 7 ++++++- package.json | 2 +- 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/local.yml diff --git a/.github/workflows/local.yml b/.github/workflows/local.yml new file mode 100644 index 0000000..d99a491 --- /dev/null +++ b/.github/workflows/local.yml @@ -0,0 +1,31 @@ +on: [push, pull_request] + +jobs: + converge: + name: Converge + runs-on: ubuntu-latest + steps: + + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Install werf + uses: werf/actions/install@v1.2 + + - name: Log in to registry + # This is where you will update the personal access token to GITHUB_TOKEN + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin + + - name: Run echo + run: | + werf version + docker version + echo $GITHUB_REPOSITORY + echo $GITHUB_SHA + - name: Run Build + run: | + . $(werf ci-env github --as-file) + echo "${{ secrets.ENV_LOCAL }}" > .env + werf export web --dev --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_SHA diff --git a/CHANGELOG.md b/CHANGELOG.md index 6884d9a..8438dc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +## [1.1.0] - 2023-12-01 +### Added +- Local build CI + ## [1.0.9] - 2023-12-01 ### Added - TSS pages @@ -60,7 +64,8 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic - Initiated project -[Unreleased]: https://gitlab.com/rarimo/scan/compare/1.0.9...HEAD +[Unreleased]: https://gitlab.com/rarimo/scan/compare/1.1.0...HEAD +[1.1.0]: https://gitlab.com/rarimo/scan/compare/1.0.9...1.1.0 [1.0.9]: https://gitlab.com/rarimo/scan/compare/1.0.8...1.0.9 [1.0.8]: https://gitlab.com/rarimo/scan/compare/1.0.7...1.0.8 [1.0.7]: https://gitlab.com/rarimo/scan/compare/1.0.6...1.0.7 diff --git a/package.json b/package.json index 27b770f..db2085f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scan", - "version": "1.0.9", + "version": "1.1.0", "private": true, "gitHooks": { "pre-commit": "yarn lint",