Merge pull request #3 from turbocat2001/rm-create-pack #19
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: 'Build driver' | |
on: | |
push: | |
branches: [ "**" ] | |
pull_request: | |
branches: [ "**" ] | |
jobs: | |
build: | |
name: 'Build' | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Fasm | |
uses: stevenwdv/setup-fasm@v1 | |
- name: Build driver | |
run: | | |
fasm vbox.asm | |
- name: Upload driver | |
uses: actions/upload-artifact@v3 | |
with: | |
name: driver | |
path: vbox.sys |