Skip to content

#139 Try 5 - post file bob5.dmg #61

#139 Try 5 - post file bob5.dmg

#139 Try 5 - post file bob5.dmg #61

name: make-github-release-assets.yaml
on: [push]
# on:
# push:
# tags:
# - "[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
name: Publish binaries
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- run: pwd
- name: Did a file get created (before)
run: ls -la
- run: echo "Test file" > /tmp/bob.txt
- name: install create-dmg
run: brew install create-dmg
- name: Make a .dmg file
run: create-dmg "MJD-Application-Installer.dmg" "tmp/"
- name: Did a file get created (after)
run: ls -la
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: /Users/runner/work/test-ground/test-ground/MJD-Application-Installer.dmg
asset_name: bob5.dmg
tag: ${{ github.ref }}
overwrite: true
body: "This is my release text"