Skip to content

Commit

Permalink
Migrate CI to Github Actions (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickw444 committed Nov 23, 2021
1 parent 4312ebe commit cbbc457
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 39 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/workflow.yaml
@@ -0,0 +1,20 @@
on: push

jobs:
release:
name: "Release"
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v2
- name: "Prepare EFI"
run: |
mkdir -p /tmp/target/EFI
cp -r BOOT OC /tmp/target/EFI
cd /tmp/target
zip -r /tmp/release.zip .
- name: Create Github Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: /tmp/release.zip
39 changes: 0 additions & 39 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit cbbc457

Please sign in to comment.