Google Chromium, sans integration with Google
https://ungoogled-software.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
455 B
22 lines
455 B
name: Create new empty release |
|
|
|
on: |
|
push: |
|
tags: |
|
- '*' |
|
|
|
jobs: |
|
build: |
|
name: Create Release |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Create Release |
|
id: create_release |
|
uses: actions/create-release@latest |
|
env: |
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
|
with: |
|
tag_name: ${{ github.ref }} |
|
release_name: ${{ github.ref }} |
|
draft: false |
|
prerelease: false
|
|
|