Skip to content

Commit

Permalink
Add GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Aug 2, 2023
1 parent e7995ff commit 9a67479
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on: [push, pull_request]

jobs:
build:
# Skip building pull requests from the same repository
if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) }}
runs-on: x64dbg-public
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Build
run: |
./build.bat x64
./build.bat x32
./release.bat
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: snapshot
path: release/*

0 comments on commit 9a67479

Please sign in to comment.