mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
21 lines
356 B
YAML
21 lines
356 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
release:
|
|
types:
|
|
- created
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
target_cpu: [x86]
|
|
env:
|
|
EXTRA_FLAGS: 'target_cpu="${{ matrix.target_cpu }}"'
|
|
steps:
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
name: artifacts
|
|
- run: ls -R
|