1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-01-23 02:15:09 +00:00

Adding PWA icons for proper pwa support

This commit is contained in:
Bastien Wirtz 2020-05-30 17:17:39 -07:00
parent 1875c17aa5
commit 2301d8919c
20 changed files with 124 additions and 3 deletions

38
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,38 @@
# Publish pre-build release
name: Upload Release Asset
on:
push:
branches: [master]
jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build project
run: |
yarn install
yarn build
zip --junk-paths homer dist/*
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.run_id }}
release_name: Release ${{ github.run_id }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./homer.zip
asset_name: homer.zip
asset_content_type: application/zip