feat: Add help text for reserving static IPs to IP mode fields MAASEN… #2325
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
name: Build upload | |
on: | |
push: | |
branches: | |
- main | |
- "3.*" | |
jobs: | |
upload-build: | |
if: github.repository_owner == 'canonical' | |
name: Upload build artifacts | |
runs-on: ubuntu-22.04 | |
env: | |
PACKAGE_NAME: maas-ui-${{ github.sha }}.tar.gz | |
VITE_APP_GIT_SHA: ${{ github.sha }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get branch name | |
uses: nelonoel/[email protected] | |
- name: Restore node_modules | |
id: yarn-cache | |
uses: actions/cache@v4 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Use Node.js from .nvmrc | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: CYPRESS_INSTALL_BINARY=0 yarn install | |
- name: Build | |
run: VITE_APP_GIT_SHA=${{env.VITE_APP_GIT_SHA}} yarn build | |
env: | |
CI: false | |
- name: Compress | |
run: cd build && tar -czf ../${{env.PACKAGE_NAME}} ./ && ls -hs ../${{env.PACKAGE_NAME}} | |
- name: Install upload-assets snap | |
run: sudo snap install upload-assets | |
- name: Upload to assets server | |
run: upload-assets --url-path ${{env.PACKAGE_NAME}} ${{env.PACKAGE_NAME}} | |
env: | |
UPLOAD_ASSETS_API_TOKEN: ${{secrets.UPLOAD_ASSETS_API_TOKEN}} | |
- name: Create issue on failure | |
if: failure() | |
uses: JasonEtco/create-an-issue@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPO: ${{ github.repository }} | |
RUN_ID: ${{ github.run_id }} | |
WORKFLOW: ${{ github.workflow }} | |
with: | |
filename: .github/ISSUE_TEMPLATE/ci-failure.md | |
update_existing: true |