Skip to content

Reverted go back change #546

Reverted go back change

Reverted go back change #546

Workflow file for this run

name: 'Compile for Edge'
on:
push:
branches: [ 'main' ]
pull_request:
branches: [ 'main' ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v6
- name: 'Extract Version'
id: get_version
run: |
VERSION=$(jq -r '.version' src/main/manifest.json)
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: 'Remove update_url from manifest.json'
run: |
jq 'del(.update_url)' src/main/manifest.json > src/main/manifest_temp.json
mv src/main/manifest_temp.json src/main/manifest.json
- name: 'Upload Artifact'
uses: actions/upload-artifact@v6
with:
name: Osprey-${{ env.VERSION }}-edge
path: src/main