mirror of
https://github.com/vuejs/apollo.git
synced 2025-12-08 18:02:09 +00:00
chore: update deps ci: fix command ci: fix missing install ci: try fixing the changelog body ci: debug env ci: try fix changelog body ci: changeloooooooooooog ci: changelooooooooooooooooooooooog ci: changelog meow ci: new action!!! ci: test changelog command ci: use node 16 ci: meow ci: test command ci: fetch everything? ci: simplify changelog ci: bump cache ci: simplify
26 lines
543 B
YAML
26 lines
543 B
YAML
name: Create release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
|
|
|
|
jobs:
|
|
build:
|
|
name: Create Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@master
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Create Release for Tag
|
|
id: release_tag
|
|
uses: Akryum/release-tag@conventional
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ github.ref }}
|
|
preset: angular
|