Skip to content

Merge pull request #23 from pool011/auto-upload-missoins #82

Merge pull request #23 from pool011/auto-upload-missoins

Merge pull request #23 from pool011/auto-upload-missoins #82

Workflow file for this run

name: Build and Deploy
on:
release:
types: [ published, prereleased ]
jobs:
build:
name: Create And Upload Release
runs-on: ubuntu-latest
container: 7cav/armake
environment:
name: production
steps:
- name: Install dependencies
run: apk add curl python3 sshpass
- name: Clone repo
uses: actions/checkout@master
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Build release
run: |
chmod +x deploy.sh
./deploy.sh ${{ steps.get_version.outputs.VERSION }}
- name: Upload Sandbox Release
uses: JasonEtco/upload-to-release@master
with:
args: release/Mission_sandbox_v${{ steps.get_version.outputs.VERSION }}.zip application/zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Sandbox No Radio Release
uses: JasonEtco/upload-to-release@master
with:
args: release/Mission_sandbox_noradio_v${{ steps.get_version.outputs.VERSION }}.zip application/zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Uploading to Server
uses: actions/checkout@v3
uses: Dylan700/sftp-upload-action@latest
with:
server: ${{ secrets.SERVER }}
username: ${{ secrets.SERVER_USER }}
password: ${{ secrets.SERVER_PASSWORD }}
port: 22
uploads: |
./server_missions/ => ./

Check failure on line 52 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 52