Browse Source

github action test

pull/1341/head
lumapu 9 months ago
parent
commit
57ba359fa3
  1. 7
      .github/workflows/compile_development.yml

7
.github/workflows/compile_development.yml

@ -145,9 +145,6 @@ jobs:
- name: Get Artifacts
uses: actions/download-artifact@master
with:
name: ahoydtu_dev
path: firmware/*
- name: Get Version from code
id: version_name
@ -174,12 +171,12 @@ jobs:
# src/install.html
- name: Rename firmware directory
run: mv src/firmware src/${{ steps.version_name.outputs.name }}
run: mv firmware ${{ steps.version_name.outputs.name }}
- name: Deploy
uses: nogsantos/scp-deploy@master
with:
src: src/${{ steps.version_name.outputs.name }}/
src: ${{ steps.version_name.outputs.name }}/
host: ${{ secrets.FW_SSH_HOST }}
remote: ${{ secrets.FW_SSH_DIR }}/dev
port: ${{ secrets.FW_SSH_PORT }}

Loading…
Cancel
Save