Skip to content

Commit

Permalink
ci: add actions
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaozhu188 committed Mar 13, 2021
1 parent cb3474b commit db088e4
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 87 deletions.
47 changes: 20 additions & 27 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,29 @@
# This is a basic workflow to help you get started with Actions
name: Build/release

name: CI

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
tags:
- 'v*.*.*'

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
release:
runs-on: ${{ matrix.os }}

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
strategy:
matrix:
os: [windows-latest, macOS-latest, ubuntu-latest]

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!
steps:
- name: Check out Git repository
uses: actions/checkout@v1

# Runs a set of commands using the runners shell
- name: Run a multi-line script
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 14
- name: Build/release Electron app
env:
GH_TOKEN: ${{ secrets.github_token }}
run: |
echo Add other actions to build,
echo test, and deploy your project.
yarn install
yarn electron:build --publish always
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## [1.1.21](https://github.com/xiaozhu188/electron-vue-cloud-music/compare/v1.1.18...v1.1.21) (2021-03-12)

范围|描述|commitId
--|--|--
- | 1.1.21 | [cf1ca74](https://github.com/xiaozhu188/electron-vue-cloud-music/commit/cf1ca74)
- | test ci2 | [3749af3](https://github.com/xiaozhu188/electron-vue-cloud-music/commit/3749af3)
- | test ci2 | [3d48c7b](https://github.com/xiaozhu188/electron-vue-cloud-music/commit/3d48c7b)
- | test ci | [94dc358](https://github.com/xiaozhu188/electron-vue-cloud-music/commit/94dc358)
- | test ci | [ae97deb](https://github.com/xiaozhu188/electron-vue-cloud-music/commit/ae97deb)
- | test ci | [d527768](https://github.com/xiaozhu188/electron-vue-cloud-music/commit/d527768)


### 📦 持续集成
范围|描述|commitId
--|--|--
- | test ci | [3370041](https://github.com/xiaozhu188/electron-vue-cloud-music/commit/3370041)


### 🔧 测试
范围|描述|commitId
--|--|--
- | test | [2182914](https://github.com/xiaozhu188/electron-vue-cloud-music/commit/2182914)

## [1.1.18](https://github.com/xiaozhu188/electron-vue-cloud-music/compare/v1.1.17...v1.1.18) (2021-03-12)

范围|描述|commitId
Expand Down
30 changes: 0 additions & 30 deletions appveyor.yml

This file was deleted.

0 comments on commit db088e4

Please sign in to comment.