Basic versioning for GitHub Action

This commit is contained in:
mrrfv
2023-05-02 20:41:40 +02:00
parent 45f316802d
commit b02b631b1e
+5 -2
View File
@@ -17,8 +17,11 @@ jobs:
with:
node-version: 16
- name: Clone repository
run: git clone https://github.com/mrrfv/cloudflare-gateway-pihole-scripts.git
- name: Clone repository and switch to v1 branch
run: |
git clone https://github.com/mrrfv/cloudflare-gateway-pihole-scripts.git
cd cloudflare-gateway-pihole-scripts
git checkout v1
- name: Install npm dependencies
run: npm ci