fix: fix actions permissions #22
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
name: "Publish" | |
on: | |
push: | |
tags: [v\d+\.\d+\.\d+] | |
jobs: | |
fullter-build: | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# - target: aarch64-apple-darwin | |
# platform: macos-latest | |
- target: x86_64-apple-darwin | |
platform: macos-latest | |
# - target: x86_64-unknown-linux-gnu | |
# platform: ubuntu-20.04 | |
# - target: x86_64-pc-windows-msvc | |
# platform: windows-latest | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Get version | |
id: get_version | |
uses: battila7/get-version-action@v2 | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
cache: true | |
cache-key: "flutter-:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache | |
cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path | |
# architecture: arm64 # optional, x64 or arm64 | |
- name: Install Android dep | |
run: echo "" | |
- name: Check Out | |
uses: actions/checkout@v3 | |
- name: Change Version | |
env: | |
VERSION: "${{ steps.get_version.outputs.version-without-v }}" | |
run: make change-version | |
- name: Build macos ios and android | |
if: matrix.platform == 'macos-latest' | |
run: | | |
flutter build macos --release | |
if [ ! -d "releases" ]; then | |
mkdir releases | |
fi | |
cp -a "build/macos/Build/Products/Release/Geek Chat.app" releases/ | |
cd releases | |
zip -r GeekChat-macos.zip "Geek Chat.app" | |
rm -rf "Geek Chat.app" | |
cd .. | |
# - name: Package Release Files | |
# run: | | |
# if [ ! -d "releases" ]; then | |
# mkdir releases | |
# fi | |
# cp -a "build/macos/Build/Products/Release/Geek Chat.app" releases/ | |
# cd releases | |
# zip -r GeekChat-macos.zip "Geek Chat.app" | |
# rm -rf "Geek Chat.app" | |
# cd .. | |
- name: Publish Artefacts | |
# if: matrix.platform == 'macos-latest' | |
uses: actions/upload-artifact@v3 | |
env: | |
VERSION: "${{ steps.get_version.outputs.version-without-v }}" | |
with: | |
name: GeekChat-${{ steps.get_version.outputs.version-without-v }} | |
path: releases/ | |
- name: Build windows destop | |
if: matrix.platform == 'windows-latest' | |
run: | | |
echo "" | |
- name: Build Linux destop | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
echo "" | |
flutter-release: | |
permissions: | |
contents: write | |
name: Release | |
needs: fullter-build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get version | |
id: get_version | |
uses: battila7/get-version-action@v2 | |
- name: Download Release Files | |
uses: actions/download-artifact@v3 | |
with: | |
name: GeekChat-${{ steps.get_version.outputs.version-without-v }} | |
env: | |
VERSION: "${{ steps.get_version.outputs.version-without-v }}" | |
- name: Display structure of downloaded files | |
run: ls -R | |
- name: Create Release # https://trstringer.com/github-actions-create-release-upload-artifacts/ | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VERSION: "${{ steps.get_version.outputs.version-without-v }}" | |
with: | |
draft: true | |
tag_name: Release-v${{ steps.get_version.outputs.version-without-v }} | |
release_name: Release-v${{ steps.get_version.outputs.version-without-v }} | |
- name: Upload Releases | |
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: GeekChat-macos.zip | |
asset_name: GeekChat-macos.zip | |
asset_content_type: application/zip |