Skip to content

chore: Remove duplicate AWS S3 publish steps from GitHub Actions work… #179

chore: Remove duplicate AWS S3 publish steps from GitHub Actions work…

chore: Remove duplicate AWS S3 publish steps from GitHub Actions work… #179

Workflow file for this run

name: build
on:
push:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Bump Version
uses: opspresso/action-builder@master
with:
args: --version
- name: Package
run: |
bash ./package.sh
- name: Release to GitHub
uses: opspresso/action-builder@master
with:
args: --release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ASSET_PATH: ./target/release
- name: Post to Slack
uses: opspresso/action-builder@master
with:
args: --slack
env:
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
JSON_PATH: ./target/slack_message.json