Skip to content

Commit

Permalink
Prepare v0.0.53
Browse files Browse the repository at this point in the history
  • Loading branch information
Caspar Oostendorp committed Dec 18, 2023
1 parent 9518dc1 commit a0c2ecc
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 13 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ jobs:
needs: buildAndPushImage
runs-on: ubuntu-latest
steps:
- name: Set version
id: vars
run: |
TAG=${{ github.ref }}
VERSION=${TAG#refs/tags/}
echo "::set-output name=version::$(echo VERSION)"
- uses: actions/checkout@v4
- name: helm lint
run: |
Expand All @@ -63,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 ${TAG#refs/tags/}
helm package $HELM_PATH_TEST --version ${{ steps.vars.outputs.version }}
- name: helm push
if: ${{ github.event_name == 'push' }}
run: |
helm push ${{ env.CHART_NAME }}-${TAG#refs/tags/}.tgz oci://ghcr.io/${{ github.repository_owner }}
helm push ${{ env.CHART_NAME }}-${{ steps.vars.outputs.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.52
CORE_VERSION = 0.0.53
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.52
0.0.53
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.52",
"version": "0.0.53",
"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.52"
version = "0.0.53"
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.52"
version: "0.0.53"

appVersion: "0.0.52"
appVersion: "0.0.53"

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.52"
version: "0.0.53"

# 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.52"
appVersion: "0.0.53"
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.52"
version: "0.0.53"
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.52"
version: "0.0.53"


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.52",
"version": "0.0.53",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down

0 comments on commit a0c2ecc

Please sign in to comment.