Skip to content

Commit

Permalink
release process
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieu-benoit authored Oct 20, 2024
1 parent 92a4c88 commit 3ea788c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: release
permissions:
contents: read
id-token: write
packages: write
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: oras login
run: |
echo ${{ secrets.GITHUB_TOKEN }} | oras login ghcr.io -u $ --password-stdin
- name: oras push
run: |
oras push ghcr.io/${{ github.repository_owner }}/score-compose:${{ github.ref_name }}
oras push ghcr.io/${{ github.repository_owner }}/score-k8s:${{ github.ref_name }}

0 comments on commit 3ea788c

Please sign in to comment.