rename workflow and add link for license file #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. | |
name: Prepare Release Page | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
package-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Main Branch | |
uses: actions/checkout@v2 | |
with: | |
ref: main | |
- name: Create Main Zip Package | |
run: | | |
mkdir archive | |
zip -r meta-openxr-sdk.zip * -x 'archive/' | |
mv meta-openxr-sdk.zip archive/ | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: archive/*.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |