Skip to content

Commit

Permalink
Prepare v0.0.55
Browse files Browse the repository at this point in the history
  • Loading branch information
Caspar Oostendorp committed Dec 18, 2023
1 parent f57fa97 commit b365ebc
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: |
TAG=${{ github.ref }}
VERSION=${TAG#refs/tags/}
echo "::set-output name=version::$(echo $VERSION)"
echo "app_version=$VERSION" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
- name: helm lint
Expand All @@ -70,9 +70,9 @@ jobs:
echo ${{ secrets.GITHUB_TOKEN }} | helm registry login ghcr.io -u $ --password-stdin
- name: helm package
run: |
helm package $HELM_PATH_TEST --version ${{ steps.vars.outputs.version }}
helm package $HELM_PATH_TEST --version ${VERSION}
- name: helm push
if: ${{ github.event_name == 'push' }}
run: |
helm push ${{ env.CHART_NAME }}-${{ steps.vars.outputs.version }}.tgz oci://ghcr.io/${{ github.repository_owner }}
helm push ${{ env.CHART_NAME }}-${VERSION}.tgz oci://ghcr.io/${{ github.repository_owner }}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
REPO = pixelaw/core
CORE_VERSION = 0.0.54
CORE_VERSION = 0.0.55
KEIKO_VERSION = v0.0.15


Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.54
0.0.55
2 changes: 1 addition & 1 deletion bots/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pixelaw-core-bots",
"version": "0.0.54",
"version": "0.0.55",
"description": "gets queueEvents and processes them",
"main": "index.js",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion contracts/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
cairo-version = "2.3.0"
name = "pixelaw"
version = "0.0.54"
version = "0.0.55"
homepage = "https://github.com/pixelaw/core"

[cairo]
Expand Down
4 changes: 2 additions & 2 deletions deployment/.shared/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ description: A Helm chart for Kubernetes

type: library

version: "0.0.54"
version: "0.0.55"

appVersion: "0.0.54"
appVersion: "0.0.55"

dependencies: [ ]

4 changes: 2 additions & 2 deletions deployment/demo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "0.0.54"
version: "0.0.55"

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.0.54"
appVersion: "0.0.55"
4 changes: 2 additions & 2 deletions deployment/test/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ icon: ""

dependencies:
- name: shared
version: "0.0.54"
version: "0.0.55"
repository: "file://../.shared"


Expand All @@ -14,6 +14,6 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "0.0.54"
version: "0.0.55"


2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pixelaw-core-web",
"private": false,
"version": "0.0.54",
"version": "0.0.55",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down

0 comments on commit b365ebc

Please sign in to comment.