forked from themesberg/flowbite-svelte-admin-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
57 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
name: Continuous integration | ||
|
||
on: | ||
push: | ||
branches: [develop] | ||
|
||
jobs: | ||
build-and-push: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
# docker build | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set environment variable | ||
run: | | ||
SHORT_SHA_COMMIT=$(git rev-parse --short HEAD) | ||
echo CONTAINER_RELEASE_IMAGE=ghcr.io/aura-nw/ipscan-admin:${GITHUB_REF_NAME}_${SHORT_SHA_COMMIT} >> $GITHUB_ENV | ||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: | | ||
${{ env.CONTAINER_RELEASE_IMAGE }} | ||
update-manifest: | ||
needs: build-and-push | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set environment variable | ||
run: | | ||
SHORT_SHA_COMMIT=$(git rev-parse --short HEAD) | ||
echo CONTAINER_RELEASE_IMAGE=ghcr.io/aura-nw/ipscan-admin:${GITHUB_REF_NAME}_${SHORT_SHA_COMMIT} >> $GITHUB_ENV | ||
echo REPO_MANIFEST_NAME=gitops >> $GITHUB_ENV | ||
echo REPO_MANIFEST_URL=github.com/aura-nw/gitops.git >> $GITHUB_ENV | ||
echo REPO_MANIFEST_BRANCH=main >> $GITHUB_ENV | ||
echo REPO_MANIFEST_ENV_DEV=./clusters/k8s-dev/ipscan >> $GITHUB_ENV | ||
echo REPO_MANIFEST_ENV_EUPHORIA=./clusters/k8s-testnet-euphoria/ipscan >> $GITHUB_ENV | ||
echo REPO_MANIFEST_ENV_SERENITY=./clusters/k8s-testnet-serenity/ipscan >> $GITHUB_ENV | ||
echo REPO_MANIFEST_TAG_IMAGE=image_ipscan_admin >> $GITHUB_ENV | ||
- name: Update manifest | ||
env: | ||
PERSONAL_ACCESS_TOKEN: ${{ secrets.REGISTRY_PASSWORD }} | ||
run: | | ||
chmod 777 -R ./ci | ||
./ci/updateManifest.sh | ||
name: Continuous integration | ||
|
||
on: | ||
push: | ||
branches: [develop] | ||
|
||
jobs: | ||
build-and-push: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
# docker build | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set environment variable | ||
run: | | ||
SHORT_SHA_COMMIT=$(git rev-parse --short HEAD) | ||
echo CONTAINER_RELEASE_IMAGE=ghcr.io/aura-nw/ipscan-admin:${GITHUB_REF_NAME}_${SHORT_SHA_COMMIT} >> $GITHUB_ENV | ||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: | | ||
${{ env.CONTAINER_RELEASE_IMAGE }} | ||
update-manifest: | ||
needs: build-and-push | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set environment variable | ||
run: | | ||
SHORT_SHA_COMMIT=$(git rev-parse --short HEAD) | ||
echo CONTAINER_RELEASE_IMAGE=ghcr.io/aura-nw/ipscan-admin:${GITHUB_REF_NAME}_${SHORT_SHA_COMMIT} >> $GITHUB_ENV | ||
echo REPO_MANIFEST_NAME=gitops >> $GITHUB_ENV | ||
echo REPO_MANIFEST_URL=github.com/aura-nw/gitops.git >> $GITHUB_ENV | ||
echo REPO_MANIFEST_BRANCH=main >> $GITHUB_ENV | ||
echo REPO_MANIFEST_ENV_DEV=./clusters/k8s-dev/ipscan >> $GITHUB_ENV | ||
echo REPO_MANIFEST_ENV_EUPHORIA=./clusters/k8s-testnet-euphoria/ipscan >> $GITHUB_ENV | ||
echo REPO_MANIFEST_ENV_SERENITY=./clusters/k8s-testnet-serenity/ipscan >> $GITHUB_ENV | ||
echo REPO_MANIFEST_TAG_IMAGE=image_ipscan_admin >> $GITHUB_ENV | ||
- name: Update manifest | ||
env: | ||
PERSONAL_ACCESS_TOKEN: ${{ secrets.REGISTRY_PASSWORD }} | ||
run: | | ||
chmod 777 -R ./ci | ||
./ci/updateManifest.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import { error, NumericRange } from '@sveltejs/kit'; | ||
import { error, type NumericRange } from '@sveltejs/kit'; | ||
|
||
export function load({ params }) { | ||
const status = +params.code; | ||
|
||
if (isNaN(status) || status < 400 || status > 599) { | ||
return error(500, 'Wrong code'); | ||
} else { | ||
const code = status as NumericRange<400,599>; | ||
const code = status as NumericRange<400, 599>; | ||
error(code, 'Not found'); | ||
} | ||
} |