fix(sandbox): fix carrier options #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Release new version 🚀' | |
on: | |
push: | |
branches: | |
- main | |
- alpha | |
- beta | |
paths-ignore: | |
- ./**/*.md | |
- ./screenshots/**/* | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/test | |
with: | |
codecov-token: ${{ secrets.CODECOV_TOKEN }} | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/build | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
release: | |
runs-on: ubuntu-22.04 | |
needs: | |
- test | |
- build | |
steps: | |
# TODO: replace GH_REPO_TOKEN with token generated by this step when apps can bypass status checks | |
- uses: myparcelnl/actions/setup-git-credentials@v3 | |
id: credentials | |
with: | |
app-id: ${{ secrets.MYPARCEL_APP_ID }} | |
private-key: ${{ secrets.MYPARCEL_APP_PRIVATE_KEY }} | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_REPO_TOKEN }} | |
fetch-depth: 0 | |
- uses: ./.github/actions/build | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/upload-pages-artifact@v1 | |
with: | |
path: dist | |
- uses: myparcelnl/actions/semantic-release@v3 | |
with: | |
token: ${{ secrets.GH_REPO_TOKEN }} | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
deploy: | |
needs: release | |
runs-on: ubuntu-22.04 | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 | |
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' |