Skip to content

1.0.0

1.0.0 #13

Workflow file for this run

name: 'Release'
on:
release:
types: [ published ]
env:
docker_repo: 'ghcr.io'
image_name: 'openirl/sls-management-ui'
jobs:
release:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- name: Node Build
uses: ./.github/actions/node-build
with:
node-version: 22
- name: Docker Build
uses: ./.github/actions/docker-build
with:
repository: ${{ env.docker_repo }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
image-name: ${{ env.image_name }}
push: true