Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,26 @@ on:

jobs:
update-release-draft:
name: Update Release Draft
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
- name: Checkout
uses: actions/checkout@v2

- name: Update Release Draft
id: release_draft
uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Set version
run: npm version "${{ steps.release_draft.outputs.name }}" --allow-same-version true --git-tag-version false

- name: Install Dependencies
run: npm install

- name: Build
run: npm run all

- name: Commit
uses: EndBug/add-and-commit@v8

4 changes: 2 additions & 2 deletions .github/workflows/stability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ jobs:
v1:
name: "v1: Swift ${{ matrix.swift }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
Expand All @@ -18,11 +17,11 @@ jobs:
with:
swift-version: ${{ matrix.swift }}
- name: Swift version
if: always()
run: swift --version | grep ${{ matrix.swift }} || exit 1
main:
name: "main: Swift ${{ matrix.swift }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
Expand All @@ -32,4 +31,5 @@ jobs:
with:
swift-version: ${{ matrix.swift }}
- name: Swift version
if: always()
run: swift --version | grep ${{ matrix.swift }} || exit 1