Skip to content

Commit

Permalink
rollback for now
Browse files Browse the repository at this point in the history
  • Loading branch information
BalliAsghar committed Jul 11, 2023
1 parent 1d463e4 commit e2216b4
Showing 1 changed file with 0 additions and 60 deletions.
60 changes: 0 additions & 60 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,63 +18,3 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
# Release-Github:
# needs: Testing
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Setup Node
# uses: actions/setup-node@v3
# with:
# node-version: 18
# - name: Get version
# id: get_version
# run: echo ::set-output name=VERSION::$(node -p "require('./package.json').version")
# - name: Release
# uses: softprops/action-gh-release@v1
# with:
# draft: false
# prerelease: false
# token: ${{ secrets.GITHUB_TOKEN }}
# tag_name: ${{ steps.get_version.outputs.VERSION }}
# generate_release_notes: true
# Release-Npm:
# needs: Testing
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# # Setup .npmrc file to publish to npm
# - uses: actions/setup-node@v3
# with:
# node-version: '18.x'
# registry-url: 'https://registry.npmjs.org'
# - run: npm ci
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
Bump-Brew:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Get version
id: get_version
run: echo ::set-output name=VERSION::$(node -p "require('./package.json').version")
- name: Bump Brew
uses: mislav/bump-homebrew-formula-action@v2
if: github.ref == 'refs/heads/main'
with:
formula-name: mailsy
formula-path: Formula/mailsy.rb
homebrew-tap: Homebrew/homebrew-core
base-branch: master
download-url: https://registry.npmjs.org/mailsy/-/mailsy-${{ steps.get_version.outputs.VERSION }}.tgz
commit-message: 'mailsy ${{ steps.get_version.outputs.VERSION }}'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}

0 comments on commit e2216b4

Please sign in to comment.