diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 05ae9f5..4b246be 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -63,9 +63,9 @@ jobs: echo ${{ secrets.GITHUB_TOKEN }} | helm registry login ghcr.io -u $ --password-stdin - name: helm package run: | - helm package $HELM_PATH_TEST --version ${{ needs.buildAndPushImage.outputs.version }} + helm package $HELM_PATH_TEST --version ${{ github.ref }} - name: helm push if: ${{ github.event_name == 'push' }} run: | - helm push ${{ env.CHART_NAME }}-${{ needs.buildAndPushImage.outputs.version }}.tgz oci://ghcr.io/${{ github.repository_owner }} + helm push ${{ env.CHART_NAME }}-${{ github.ref }}.tgz oci://ghcr.io/${{ github.repository_owner }} diff --git a/Makefile b/Makefile index 5d9be84..e512101 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ REPO = pixelaw/core -CORE_VERSION = 0.0.50 +CORE_VERSION = 0.0.51 KEIKO_VERSION = v0.0.15 diff --git a/VERSION b/VERSION index 85ab4c6..c4132bc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.50 +0.0.51 diff --git a/bots/package.json b/bots/package.json index c3abd5d..0aac972 100644 --- a/bots/package.json +++ b/bots/package.json @@ -1,6 +1,6 @@ { "name": "pixelaw-core-bots", - "version": "0.0.50", + "version": "0.0.51", "description": "gets queueEvents and processes them", "main": "index.js", "license": "MIT", diff --git a/contracts/Scarb.toml b/contracts/Scarb.toml index 744e948..61b96e7 100644 --- a/contracts/Scarb.toml +++ b/contracts/Scarb.toml @@ -1,7 +1,7 @@ [package] cairo-version = "2.3.0" name = "pixelaw" -version = "0.0.50" +version = "0.0.51" homepage = "https://github.com/pixelaw/core" [cairo] diff --git a/deployment/.shared/Chart.yaml b/deployment/.shared/Chart.yaml index 0e451d8..e38e828 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.50" +version: "0.0.51" -appVersion: "0.0.50" +appVersion: "0.0.51" dependencies: [ ] diff --git a/deployment/demo/Chart.yaml b/deployment/demo/Chart.yaml index 61e532d..60586a0 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.50" +version: "0.0.51" # 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.50" +appVersion: "0.0.51" diff --git a/deployment/test/Chart.yaml b/deployment/test/Chart.yaml index 896a36f..f01ed10 100644 --- a/deployment/test/Chart.yaml +++ b/deployment/test/Chart.yaml @@ -5,7 +5,7 @@ icon: "" dependencies: - name: shared - version: "0.0.50" + version: "0.0.51" 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.50" +version: "0.0.51" diff --git a/web/package.json b/web/package.json index 6d38e78..38dcf42 100644 --- a/web/package.json +++ b/web/package.json @@ -1,7 +1,7 @@ { "name": "pixelaw-core-web", "private": false, - "version": "0.0.50", + "version": "0.0.51", "type": "module", "scripts": { "dev": "vite",