Skip to content

Commit

Permalink
Switch to GH actions for build
Browse files Browse the repository at this point in the history
  • Loading branch information
roborourke committed Mar 11, 2024
1 parent 91992d6 commit e589b4e
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 137 deletions.
31 changes: 0 additions & 31 deletions .circleci/config.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .circleci/deploy-exclude.txt

This file was deleted.

94 changes: 0 additions & 94 deletions .circleci/deploy.sh

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
on:
push:
tags:
- '*'

name: Create Release

jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
with:
node-version: '12'
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Create Release
uses: technote-space/release-github-actions@v7
with:
CLEAN_TEST_TAG: true
CLEAN_TARGETS: .[!.]*,__tests__,package.json,yarn.lock,node_modules,tests,*.xml.dist
COMMIT_MESSAGE: "Built release for ${{ steps.get_version.outputs.VERSION }}. For a full change log look at the notes within the original/${{ steps.get_version.outputs.VERSION }} release."
CREATE_MAJOR_VERSION_TAG: false
CREATE_MINOR_VERSION_TAG: false
CREATE_PATCH_VERSION_TAG: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ORIGINAL_TAG_PREFIX: original/
OUTPUT_BUILD_INFO_FILENAME: build.json
TEST_TAG_PREFIX: test/

0 comments on commit e589b4e

Please sign in to comment.