-
-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (36 loc) · 1003 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: release
on:
# push:
# branches:
# - main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
# id-token: write
jobs:
push-store-image:
runs-on: ubuntu-latest
steps:
- name: "Checkout GitHub Action"
uses: actions/checkout@v4
with:
fetch-depth: "0" # to be able to use `git describe` and retrieve tags
- name: "Login to GitHub Container Registry"
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Set up Docker Buildx # to support buildx, multi-arch builds
uses: docker/setup-buildx-action@v3
- uses: jdx/mise-action@v2
- run: mise install
shell: bash
working-directory: charts
- run: mise run publish
shell: bash
working-directory: charts