pushing missing code #39
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: "latest-release" | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
tagged-release: | |
name: "Latest Release" | |
runs-on: "ubuntu-latest" | |
steps: | |
# ... | |
- name: "Build & test" | |
run: | | |
echo "done!" | |
- name: 'Checkout repo' | |
uses: actions/checkout@v2 | |
- name: 'Make (and upload) ZIP file(s)' | |
uses: oracle-devrel/[email protected] | |
id: zip_maker | |
with: | |
fail_on_missing_file: true | |
overwrite_dst: true | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: false | |
title: "ORM Latest Development Build" | |
files: | | |
oci-ampere-a1-latest.zip |