Removed debug statements in disassembler #30
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: Hasm VS Code Extension for GitHub Pages | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 5.0.x | |
- name: Insall Global Dependencies | |
run: npm install -g yarn vsce | |
- name: Install NPM Dependencies | |
run: yarn install | |
working-directory: hasm-vscode | |
- name: Compile and Execute Build Scripts | |
run: yarn compile | |
working-directory: hasm-vscode | |
- run: mkdir extension-build | |
shell: bash | |
working-directory: hasm-vscode | |
- name: Generate VSIX Extension File | |
run: vsce package -o extension-build/hasm.vsix --yarn | |
working-directory: hasm-vscode | |
- name: Create .nojekyll | |
run: touch extension-build/.nojekyll | |
shell: bash | |
working-directory: hasm-vscode | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
github_token: ${{ inputs.github_token }} | |
branch: gh-pages | |
folder: hasm-vscode/extension-build | |
target_folder: extension |