Skip to content

Fixed dpr issue happened on background canvas renderer (#489) #10

Fixed dpr issue happened on background canvas renderer (#489)

Fixed dpr issue happened on background canvas renderer (#489) #10

Workflow file for this run

# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Release Draft
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-beta-[0-9]+"
jobs:
release-draft:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: './go.mod'
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: './.node-version'
- name: Install Frontend Dependencies
run: |
cd web
npm ci
- name: Update VERSION file
run: echo "${GITHUB_REF_NAME#v}" > VERSION
- name: Build Binaries
run: make build-go-binaries
- name: Create Release
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b
with:
draft: true
files: bin/*