diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index ab9fab2..78f5ef9 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -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 @@ -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 }} diff --git a/Makefile b/Makefile index fb0c996..74bc145 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ REPO = pixelaw/core -CORE_VERSION = 0.0.54 +CORE_VERSION = 0.0.55 KEIKO_VERSION = v0.0.15 diff --git a/VERSION b/VERSION index c97e08f..8e0e3bc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.54 +0.0.55 diff --git a/bots/package.json b/bots/package.json index a472f33..9ca9c91 100644 --- a/bots/package.json +++ b/bots/package.json @@ -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", diff --git a/contracts/Scarb.toml b/contracts/Scarb.toml index efafbe6..b182bf5 100644 --- a/contracts/Scarb.toml +++ b/contracts/Scarb.toml @@ -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] diff --git a/deployment/.shared/Chart.yaml b/deployment/.shared/Chart.yaml index 8e4face..57b32d8 100644 --- a/deployment/.shared/Chart.yaml +++ b/deployment/.shared/Chart.yaml @@ -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: [ ] diff --git a/deployment/demo/Chart.yaml b/deployment/demo/Chart.yaml index 32a34a8..4b0ca19 100644 --- a/deployment/demo/Chart.yaml +++ b/deployment/demo/Chart.yaml @@ -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" diff --git a/deployment/test/Chart.yaml b/deployment/test/Chart.yaml index 66d24ee..78ce1b1 100644 --- a/deployment/test/Chart.yaml +++ b/deployment/test/Chart.yaml @@ -5,7 +5,7 @@ icon: "" dependencies: - name: shared - version: "0.0.54" + version: "0.0.55" repository: "file://../.shared" @@ -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" diff --git a/web/package.json b/web/package.json index 0785d90..6466a1d 100644 --- a/web/package.json +++ b/web/package.json @@ -1,7 +1,7 @@ { "name": "pixelaw-core-web", "private": false, - "version": "0.0.54", + "version": "0.0.55", "type": "module", "scripts": { "dev": "vite",