Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
napalmpapalam committed Dec 1, 2023
1 parent 244732e commit 98aad8c
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/local.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]

- 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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scan",
"version": "1.0.9",
"version": "1.1.0",
"private": true,
"gitHooks": {
"pre-commit": "yarn lint",
Expand Down

0 comments on commit 98aad8c

Please sign in to comment.