Skip to content

ci: Upgrade devbox-install-action #16

ci: Upgrade devbox-install-action

ci: Upgrade devbox-install-action #16

Workflow file for this run

# Copyright 2021-2023 D2iQ, Inc. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
name: release
on:
workflow_dispatch:
push:
tags:
- v*
permissions:
contents: write
packages: write
jobs:
release-tag:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Install devbox
uses: jetpack-io/devbox-install-actionv0.5.0
with:
enable-cache: true
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Release
run: devbox run -- make release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}