Skip to content

Commit

Permalink
Merge pull request #4 from bigbinary/release-workflow-update
Browse files Browse the repository at this point in the history
Added a new release workflow
  • Loading branch information
udai1931 authored Nov 11, 2024
2 parents 99e1879 + d9595c0 commit 0adae9e
Show file tree
Hide file tree
Showing 9 changed files with 15,943 additions and 11,891 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"presets": ["@babel/preset-env", "@babel/preset-react"]
"presets": ["es2015", "react", "stage-1"],
"plugins": ["add-module-exports"]
}
101 changes: 0 additions & 101 deletions .github/workflows/create_and_publish_releases.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/publish.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on: [push]

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
run: npm ci
- name: Release
uses: codfish/semantic-release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
32 changes: 0 additions & 32 deletions eslint.config.js

This file was deleted.

Loading

0 comments on commit 0adae9e

Please sign in to comment.