Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/build2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Azure Pages CI



on:

push:

branches:

- dev

pull_request:

branches:

- dev

jobs:

azure_pages_job:

runs-on: ubuntu-latest

name: Build And Deploy

steps:

- uses: actions/checkout@v1

- name: Build And Deploy

id: azurepagesbuilddeploy

uses: colbytresness/basic-deploy-task@master

with:

azure_pages_buildhost: 'jamstackdemobuildsystem.azurewebsites.net'

azure_pages_api_token: ${{ secrets.AZURE_PAGES_API_TOKEN }}

azure_pages_api_version: 'v1' # optional

app_build_output_location: 'dist'

app_source_location: 'app' # optional

azure_function_location: 'api' # optional
2 changes: 1 addition & 1 deletion app/src/home/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img class="robot" src="../assets/robot-home.png" aria-hidden="true">
</div>
<div class="getting-started">
<router-link to="/build">Get started</router-link>&nbsp;building your first robot.
<router-link to="/build">Get started</router-link>&nbsp;building your first robot(s)!!
</div>
</div>
</template>
Expand Down