Skip to content

feat(types): add newable (#120) #35

feat(types): add newable (#120)

feat(types): add newable (#120) #35

Workflow file for this run

name: 'Release πŸš€'
on:
push:
branches:
- alpha
- beta
- main
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/test
with:
codacy-api-token: ${{ secrets.CODACY_API_TOKEN }}
release:
name: 'Publish new release πŸš€'
runs-on: ubuntu-22.04
needs: test
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GH_REPO_TOKEN }}
- uses: myparcelnl/actions/yarn-install@v3
- name: 'Create build'
run: yarn build
- uses: myparcelnl/actions/semantic-release@v3
with:
token: ${{ secrets.GH_REPO_TOKEN }}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
rebase-prs:
needs: release
if: always()
runs-on: ubuntu-22.04
steps:
- uses: myparcelnl/actions/setup-git-credentials@v3
id: credentials
with:
app-id: ${{ secrets.MYPARCEL_APP_ID }}
private-key: ${{ secrets.MYPARCEL_APP_PRIVATE_KEY }}
- uses: peter-evans/rebase@v2
with:
token: ${{ steps.credentials.outputs.token }}
base: ${{ github.ref_name }}
exclude-drafts: true
exclude-labels: 'dependencies'