Skip to content

Commit 8937f4d

Browse files
chore: update deployment charts and update versions (#104)
Co-authored-by: segfault-magnet <ahmed.sagdati.ets@gmail.com>
1 parent 40a24d2 commit 8937f4d

File tree

16 files changed

+198
-388
lines changed

16 files changed

+198
-388
lines changed

.github/actions/docker-publish/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ inputs:
1515
docker_platforms:
1616
require: true
1717
docker_file:
18-
default: deployment/Dockerfile
18+
default: Dockerfile
1919
require: true
2020
docker_username:
2121
require: true

.github/scripts/verify_chart_version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ curl -sSLf "https://github.com/TomWright/dasel/releases/download/v1.24.3/dasel_l
1414
chmod +x dasel
1515
mv ./dasel /usr/local/bin/dasel
1616
# check appVersion with crate package metadata
17-
HELM_APP_VERSION=$(cat deployment/charts/Chart.yaml | dasel -r yaml 'appVersion')
17+
HELM_APP_VERSION=$(cat helm/fuel-block-committer/Chart.yaml | dasel -r yaml 'appVersion')
1818
CRATE_VERSION=$(cat Cargo.toml | dasel -r toml 'workspace.package.version')
1919
if [ "$HELM_APP_VERSION" != "$CRATE_VERSION" ]; then
2020
err "crate version $CRATE_VERSION, doesn't match helm app version $HELM_APP_VERSION"

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
helm: latest
4343
- name: Lint helm chart
44-
run: helm lint deployment/charts
44+
run: helm lint helm/fuel-block-committer
4545
- name: Verify helm chart version matches crate
4646
run: |
4747
./.github/scripts/verify_chart_version.sh
@@ -139,7 +139,7 @@ jobs:
139139
image_name: ${{ env.IMAGE_NAME }}
140140
docker_username: ${{ github.repository_owner }}
141141
docker_password: ${{ secrets.GITHUB_TOKEN }}
142-
docker_platforms: linux/amd64,linux/arm64
142+
docker_platforms: linux/amd64
143143

144144
- uses: FuelLabs/.github/.github/actions/slack-notify-template@master
145145
if: always() && (github.ref == 'refs/heads/master' || github.ref_type == 'tag')

0 commit comments

Comments
 (0)