Skip to content

fix: update ghcr.io/frantche/coder-full docker tag to v0.2.3 (#4) #9

fix: update ghcr.io/frantche/coder-full docker tag to v0.2.3 (#4)

fix: update ghcr.io/frantche/coder-full docker tag to v0.2.3 (#4) #9

name: Update Coder Template
on:
push:
branches:
- main
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get latest commit hash
id: latest_commit
run: echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Get commit title
id: commit_title
run: echo "title=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT
- name: Update Coder Template
uses: matifali/update-coder-template@v3
with:
id: kubernetes
dir: template-kubernetes
url: https://coder.frantchenco.page
name: ${{ steps.latest_commit.outputs.hash }}
message: ${{ steps.commit_title.outputs.title }}
coder_session_token: ${{ secrets.CODER_SESSION_TOKEN }}