Skip to content

build(deps): bump github.com/open-policy-agent/opa from 0.67.1 to 0.68.0 #100

build(deps): bump github.com/open-policy-agent/opa from 0.67.1 to 0.68.0

build(deps): bump github.com/open-policy-agent/opa from 0.67.1 to 0.68.0 #100

Workflow file for this run

name: Post Tag
on:
push:
tags:
- 'v*'
jobs:
build:
name: Push Latest Release Binaries
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set TAG_NAME in Environment
# Subsequent jobs will be have the computed tag name
run: echo "TAG_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Build Release Binaries
run: make release
- name: Create or Update Release
env:
# Required for the GitHub CLI
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./build/github-release.sh --asset-dir=./_release/${TAG_NAME#v}/ --tag=${TAG_NAME}