style(atws-shell-theme): adjust colors, remove spacing #168
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
# init-cache: | |
# name: π¦ Cache Yarn Packages | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: π Checkout | |
# uses: actions/checkout@v3 | |
# - name: π§ Setup Node | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: "18" | |
# cache: "yarn" | |
# - name: πΎ Installing packages | |
# run: yarn install | |
release: | |
name: π Release @atws packages | |
runs-on: ubuntu-latest | |
# needs: [init-cache] | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v3 | |
- name: π§ Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "yarn" | |
- name: πΎ Installing packages | |
run: yarn install | |
- name: π¦ Build packages | |
run: yarn run build | |
- name: π Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
run: yarn run release |