Skip to content

Commit

Permalink
--wip-- [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
wittdennis committed Aug 28, 2024
1 parent c4b4d54 commit 3daa23e
Show file tree
Hide file tree
Showing 74 changed files with 3,454 additions and 10,513 deletions.
19 changes: 8 additions & 11 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
Dockerfile
.dockerignore
.gitignore
README.md
LICENCE
.vscode
.azuredevops
.github
build
dist
node_modules
/target/
pkg
**/*.rs.bk
node_modules/
test-results/
end2end/playwright-report/
playwright/.cache/
.sass-cache/
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

35 changes: 0 additions & 35 deletions .eslintrc.json

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: conventional-commits

on: [push]

jobs:
conventional-compliance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
fetch-depth: 0

- name: Conventional commits check
uses: oknozor/[email protected]
with:
check-latest-tag-only: true
81 changes: 0 additions & 81 deletions .github/workflows/pipeline.yaml

This file was deleted.

10 changes: 10 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: pr

on: [pull_request]

jobs:
build:
uses: wittdennis/.github/.github/workflows/build-docker-image.yaml@master
with:
image-name: homepage
create-artifacts: false
13 changes: 13 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: publish-image

on:
release:
types: published

jobs:
publish:
uses: wittdennis/.github/.github/workflows/publish-docker-image.yaml@master
with:
image-name: homepage
secrets:
registry-password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
37 changes: 37 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: github-release

on:
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_TOKEN }}

- name: setup git config
run: |
git config user.name github-actions
git config user.email [email protected]
- name: bump version
id: release
uses: oknozor/[email protected]
with:
release: true
git-user: github-actions
git-user-email: [email protected]
check-latest-tag-only: true

- name: generate changelog
run: cog changelog --at ${{ steps.release.outputs.version }} > GITHUB_CHANGELOG.md

- uses: softprops/[email protected]
name: create release
with:
body_path: GITHUB_CHANGELOG.md
tag_name: ${{ steps.release.outputs.version }}
token: ${{ secrets.RELEASE_TOKEN }}
18 changes: 16 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
node_modules
dist
# Generated by Cargo
# will have compiled files and executables
/target/
pkg

# These are backup files generated by rustfmt
**/*.rs.bk

# node e2e test tools and outputs
node_modules/
test-results/
end2end/playwright-report/
playwright/.cache/

# Sass cache dir
.sass-cache/
2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

3 changes: 0 additions & 3 deletions .prettierignore

This file was deleted.

3 changes: 0 additions & 3 deletions .prettierrc

This file was deleted.

8 changes: 0 additions & 8 deletions .vscode/extensions.json

This file was deleted.

7 changes: 0 additions & 7 deletions .vscode/settings.json

This file was deleted.

Loading

0 comments on commit 3daa23e

Please sign in to comment.