Skip to content

Commit

Permalink
ci: add build snapshot workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kfilippenok committed Nov 24, 2024
1 parent b0681a4 commit 2627d95
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Snapshot
on: [push]

env:
release_tag: snapshot

jobs:
build:
strategy:
matrix:
operating-system: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout Tiles Downloader
uses: actions/checkout@v4
- name: Setup Lazarus
uses: gcarreno/setup-lazarus@v3
with:
lazarus-version: "dist"
include-packages: "BGRABitmap"
with-cache: true
- name: Build
run: lazbuild src/tilesdownloader.lpi

0 comments on commit 2627d95

Please sign in to comment.