Skip to content

Commit

Permalink
Merge pull request #33 from kingdonb/release-0.1.1
Browse files Browse the repository at this point in the history
Release 0.1.1
  • Loading branch information
Kingdon Barrett authored Jun 27, 2023
2 parents 0041a78 + f130dd1 commit c464507
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
run: |
cp "${HOME}/.local/bin/stat.wasm" lib/stat.wasm
- name: Build and push latest
- name: Build and push canary
uses: docker/build-push-action@v4
if: "${{ github.event.inputs.dockerTarget != 'base'}}"
with:
Expand All @@ -131,7 +131,7 @@ jobs:
# provenance: true
push: true
builder: ${{ steps.buildx.outputs.name }}
tags: ${{ env.IMAGE_TAG }}:latest
tags: ${{ env.IMAGE_TAG }}:canary
target: deploy
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
options:
- ''
- base
- latest
- canary
- gem-cache
- gems
env:
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
# build-args: | ## Empty the cache
# CACHE_IMAGE=${{ env.IMAGE_TAG }}:${{ github.event.inputs.cacheTag }}

- name: Build and push latest
- name: Build and push canary
uses: docker/build-push-action@v4
if: "${{ github.event.inputs.dockerTarget == 'deploy'}}"
with:
Expand All @@ -215,7 +215,7 @@ jobs:
# provenance: true
push: true
builder: ${{ steps.buildx.outputs.name }}
tags: ${{ env.IMAGE_TAG }}:latest
tags: ${{ env.IMAGE_TAG }}:canary
target: deploy
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down
4 changes: 2 additions & 2 deletions config/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

major: 0
minor: 1
patch: 0
patch: 1
# meta: rc.1
# milestone: 4
build: 227
build: 239

committer: Kingdon Barrett
build_date: 2023-06-27
Expand Down
2 changes: 1 addition & 1 deletion deploy/bases/cron/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
serviceAccountName: "stats-tracker-ghcr"
containers:
- name: stathcr
image: ghcr.io/kingdonb/stats-tracker-ghcr:latest
image: ghcr.io/kingdonb/stats-tracker-ghcr:canary
imagePullPolicy: Always
#args:
# - "-v=3"
Expand Down
2 changes: 1 addition & 1 deletion deploy/bases/rails/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
serviceAccountName: "stats-tracker-ghcr"
containers:
- image: ghcr.io/kingdonb/stats-tracker-ghcr:latest
- image: ghcr.io/kingdonb/stats-tracker-ghcr:canary
name: statsview
command: ["bundle"]
args: ["exec", "rails", "server", "-b", "0.0.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion deploy/overlays/production/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ resources:
images:
- name: ghcr.io/kingdonb/stats-tracker-ghcr
newName: ghcr.io/kingdonb/stats-tracker-ghcr
newTag: 0.1.0
newTag: 0.1.1
2 changes: 1 addition & 1 deletion lib/templates/version.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

major: 0
minor: 1
patch: 0
patch: 1
# meta: rc.1
# milestone: 4
build: <%= `git rev-list HEAD|wc -l`.strip %>
Expand Down

0 comments on commit c464507

Please sign in to comment.