There was an error while loading. Please reload this page.
In the following sections:
- name: E2E Run Azure Functions Action uses: Azure/functions-action@v1 id: functionapp_id with: app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }} package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output' publish-profile: ${{ secrets.GAE_FA_DOTNET3_LCON }}
The GitHub Host Runners only care about your GitHub repository location and branch name (e.g. Azure/functions-action@v1). So we need to release
master
$ git checkout releases/v1 $ git merge master # there shouldn't be any conflicts $ npm install $ npm run build $ git add . $ git commit -m "Updating node_modules and lib files" $ git push origin releases/v1 $ git tag -m "v1.x.x" -a "v1.x.x" # Create a new release tag $ git push origin v1.x.x $ git tag -f -a v1 # Update v1 tag $ git push -f --tags
v1.x.x
v1
Official GitHub Action Versioning Guideline